題目連結

雙指針好題!

思考看看,如何透過雙指針來達成 $O(N^2)$!(hint: 枚舉一數字)

AC Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifdef LOCAL
#include <bits/stdc++.h>
using namespace std;

// tree node stuff here...
#endif

static int __initialSetup = []()
{
    std::ios::sync_with_stdio(false);
    cin.tie(NULL);
    return 0;
}
();

// handle special cases first
// [], "", ...
// range of input?

/*
Good case
[3,1,0,-2]
4
*/
typedef pair<int, int> ii;
class Solution
{
public:
    int threeSumSmaller(vector<int> &nums, int target)
    {
        sort(nums.begin(), nums.end());
        // enumerate leftmost
        // two pointer on the right interval!
        // What a solution
        int ans = 0;
        for (int i = 0; i < (int)nums.size() - 2; i++) {
            int l = i + 1, r = (int)nums.size() - 1;
            int tmp = 0;
            while (l < r) {
                // nums[l] + nums[(l, r]] will < target - nums[i]!
                // What an observation
                if (nums[l] + nums[r] < target - nums[i]) {
                    tmp += r - l;
                    l++;
                } else {
                    r--;
                }
            }
            ans += tmp;
        }

        return ans;
    }
};

#ifdef LOCAL
int main()
{
    return 0;
}
#endif