Skip to content

Commit ccaf782

Browse files
committed
Solution for 340 388
1 parent 2f63797 commit ccaf782

File tree

3 files changed

+84
-0
lines changed

3 files changed

+84
-0
lines changed

300-400q/340.py

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
'''
2+
Given a string, find the longest substring that contains only two unique characters. For example, given "abcbbbbcccbdddadacb", the longest substring that contains 2 unique character is "bcbbbbcccb".
3+
'''
4+
5+
class Solution(object):
6+
def lengthOfLongestSubstringKDistinct(self, S, K):
7+
charMapping, start = {}, 0
8+
result = 0
9+
for end, s in enumerate(S):
10+
if s in charMapping:
11+
charMapping[s] += 1
12+
else:
13+
charMapping[s] = 1
14+
15+
if len(charMapping) <= K:
16+
result = max(result, end-start+1)
17+
else:
18+
while len(charMapping) > K :
19+
character = S[start]
20+
freq = charMapping[character]
21+
if freq == 1:
22+
del charMapping[character]
23+
else:
24+
charMapping[character] -= 1
25+
start += 1
26+
return result
27+
28+
if __name__ == '__main__':
29+
print Solution().lengthOfLongestSubstringKDistinct("abcadcacacaca", 3)

300-400q/388.py

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
'''
2+
Suppose we abstract our file system by a string in the following manner:
3+
4+
The string "dir\n\tsubdir1\n\tsubdir2\n\t\tfile.ext" represents:
5+
6+
dir
7+
subdir1
8+
subdir2
9+
file.ext
10+
The directory dir contains an empty sub-directory subdir1 and a sub-directory subdir2 containing a file file.ext.
11+
12+
The string "dir\n\tsubdir1\n\t\tfile1.ext\n\t\tsubsubdir1\n\tsubdir2\n\t\tsubsubdir2\n\t\t\tfile2.ext" represents:
13+
14+
dir
15+
subdir1
16+
file1.ext
17+
subsubdir1
18+
subdir2
19+
subsubdir2
20+
file2.ext
21+
The directory dir contains two sub-directories subdir1 and subdir2. subdir1 contains a file file1.ext and an empty second-level sub-directory subsubdir1. subdir2 contains a second-level sub-directory subsubdir2 containing a file file2.ext.
22+
23+
We are interested in finding the longest (number of characters) absolute path to a file within our file system. For example, in the second example above, the longest absolute path is "dir/subdir2/subsubdir2/file2.ext", and its length is 32 (not including the double quotes).
24+
25+
Given a string representing the file system in the above format, return the length of the longest absolute path to file in the abstracted file system. If there is no file in the system, return 0.
26+
27+
Note:
28+
The name of a file contains at least a . and an extension.
29+
The name of a directory or sub-directory will not contain a ..
30+
Time complexity required: O(n) where n is the size of the input string.
31+
32+
Notice that a/aa/aaa/file1.txt is not the longest file path, if there is another path aaaaaaaaaaaaaaaaaaaaa/sth.png
33+
'''
34+
35+
class Solution(object):
36+
def lengthLongestPath(self, input):
37+
"""
38+
:type input: str
39+
:rtype: int
40+
"""
41+
if not input:
42+
return 0
43+
directories = input.split('\n')
44+
stack = [[-1, 0]] # \t level, total dir length
45+
result = 0
46+
for direct in directories:
47+
n_tabs = direct.count('\t')
48+
while stack and stack[-1][0] >= n_tabs:
49+
stack.pop()
50+
if "." in direct:
51+
result = max(result, stack[-1][1] + len(direct)-n_tabs)
52+
stack.append([n_tabs, stack[-1][1] + len(direct) + 1 -n_tabs])
53+
return result

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,13 @@ Python solution of problems from [LeetCode](https://leetcode.com/).
9797
##### [Problems 300-400](./300-400q/)
9898
| # | Title | Solution | Difficulty |
9999
|---| ----- | -------- | ---------- |
100+
|388|[Longest Absolute File Path](https://leetcode.com/problems/longest-absolute-file-path)|[Python](./300-400q/388.py)|Medium|
100101
|387|[First Unique Character in a String](https://leetcode.com/problems/first-unique-character-in-a-string/) | [Python](./300-400q/387.py)|Easy|
101102
|380|[Insert Delete GetRandom O(1)](https://leetcode.com/problems/insert-delete-getrandom-o1/) | [Python](./300-400q/380.py)|Hard|
102103
|378|[Kth Smallest Element in a Sorted Matrix](https://leetcode.com/problems/kth-smallest-element-in-a-sorted-matrix) | [Python](./300-400q/378.py)|Medium|
103104
|350|[Intersection of Two Arrays II](https://leetcode.com/problems/intersection-of-two-arrays-ii/) | [Python](./300-400q/350.py)|Easy|
104105
|347|[Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/) | [Python](./300-400q/347.py)|Medium|
106+
|340|[Longest Substring with At Most K Distinct Characters](https://leetcode.com/problems/longest-substring-with-at-most-k-distinct-characters)|[Python](./300-400q/340.py)|Hard|
105107
|334|[Increasing Triplet Subsequence](https://leetcode.com/problems/increasing-triplet-subsequence/) | [Python](./300-400q/334.py)|Medium|
106108
|332|[Reconstruct Itinerary](https://leetcode.com/problems/reconstruct-itinerary/)|[Python](./300-400q/332.py)|Medium|
107109
|329|[Longest Increasing Path in a Matrix](https://leetcode.com/problems/longest-increasing-path-in-a-matrix/) | [Python](./300-400q/329.py)|Medium|

0 commit comments

Comments
 (0)