題目連結

雙指針基本題!

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
#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?
class Solution
{
public:
    int lengthOfLongestSubstringKDistinct(string s, int k)
    {
        int ans = 0;

        int l = 0;
        unordered_map<char, int> cnt;
        for (int r = 0; r < (int)s.length(); r++) { //[l, r]
            cnt[s[r]]++;
            while (l < r && (int)cnt.size() > k) {
                cnt[s[l]]--;
                if (cnt[s[l]] == 0)
                    cnt.erase(s[l]);
                l++;
            }

            if ((int)cnt.size() <= k) {
                ans = max(ans, r - l + 1);
            }
        }

        return ans;
    }
};

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