Skip to content

Commit

Permalink
Solution for 340 388
Browse files Browse the repository at this point in the history
  • Loading branch information
Garvit244 committed May 26, 2019
1 parent 2f63797 commit ccaf782
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 0 deletions.
29 changes: 29 additions & 0 deletions 300-400q/340.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
'''
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".
'''

class Solution(object):
def lengthOfLongestSubstringKDistinct(self, S, K):
charMapping, start = {}, 0
result = 0
for end, s in enumerate(S):
if s in charMapping:
charMapping[s] += 1
else:
charMapping[s] = 1

if len(charMapping) <= K:
result = max(result, end-start+1)
else:
while len(charMapping) > K :
character = S[start]
freq = charMapping[character]
if freq == 1:
del charMapping[character]
else:
charMapping[character] -= 1
start += 1
return result

if __name__ == '__main__':
print Solution().lengthOfLongestSubstringKDistinct("abcadcacacaca", 3)
53 changes: 53 additions & 0 deletions 300-400q/388.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
'''
Suppose we abstract our file system by a string in the following manner:
The string "dir\n\tsubdir1\n\tsubdir2\n\t\tfile.ext" represents:
dir
subdir1
subdir2
file.ext
The directory dir contains an empty sub-directory subdir1 and a sub-directory subdir2 containing a file file.ext.
The string "dir\n\tsubdir1\n\t\tfile1.ext\n\t\tsubsubdir1\n\tsubdir2\n\t\tsubsubdir2\n\t\t\tfile2.ext" represents:
dir
subdir1
file1.ext
subsubdir1
subdir2
subsubdir2
file2.ext
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.
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).
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.
Note:
The name of a file contains at least a . and an extension.
The name of a directory or sub-directory will not contain a ..
Time complexity required: O(n) where n is the size of the input string.
Notice that a/aa/aaa/file1.txt is not the longest file path, if there is another path aaaaaaaaaaaaaaaaaaaaa/sth.png
'''

class Solution(object):
def lengthLongestPath(self, input):
"""
:type input: str
:rtype: int
"""
if not input:
return 0
directories = input.split('\n')
stack = [[-1, 0]] # \t level, total dir length
result = 0
for direct in directories:
n_tabs = direct.count('\t')
while stack and stack[-1][0] >= n_tabs:
stack.pop()
if "." in direct:
result = max(result, stack[-1][1] + len(direct)-n_tabs)
stack.append([n_tabs, stack[-1][1] + len(direct) + 1 -n_tabs])
return result
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,13 @@ Python solution of problems from [LeetCode](https://leetcode.com/).
##### [Problems 300-400](./300-400q/)
| # | Title | Solution | Difficulty |
|---| ----- | -------- | ---------- |
|388|[Longest Absolute File Path](https://leetcode.com/problems/longest-absolute-file-path)|[Python](./300-400q/388.py)|Medium|
|387|[First Unique Character in a String](https://leetcode.com/problems/first-unique-character-in-a-string/) | [Python](./300-400q/387.py)|Easy|
|380|[Insert Delete GetRandom O(1)](https://leetcode.com/problems/insert-delete-getrandom-o1/) | [Python](./300-400q/380.py)|Hard|
|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|
|350|[Intersection of Two Arrays II](https://leetcode.com/problems/intersection-of-two-arrays-ii/) | [Python](./300-400q/350.py)|Easy|
|347|[Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/) | [Python](./300-400q/347.py)|Medium|
|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|
|334|[Increasing Triplet Subsequence](https://leetcode.com/problems/increasing-triplet-subsequence/) | [Python](./300-400q/334.py)|Medium|
|332|[Reconstruct Itinerary](https://leetcode.com/problems/reconstruct-itinerary/)|[Python](./300-400q/332.py)|Medium|
|329|[Longest Increasing Path in a Matrix](https://leetcode.com/problems/longest-increasing-path-in-a-matrix/) | [Python](./300-400q/329.py)|Medium|
Expand Down

0 comments on commit ccaf782

Please sign in to comment.