1 Star 0 Fork 0

yuhang2__2/LeetCode-Solutions

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
split-a-string-into-the-max-number-of-unique-substrings.py 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
# Time: O(n * 2^(n - 1))
# Space: O(n)
class Solution(object):
def maxUniqueSplit(self, s):
"""
:type s: str
:rtype: int
"""
def popcount(n):
count = 0
while n:
n &= n-1
count += 1
return count
result = 1
total = 2**(len(s)-1)
mask = 0
while mask < total:
if popcount(mask) < result:
mask += 1
continue
lookup, curr, base = set(), [], total//2
for i in xrange(len(s)):
curr.append(s[i])
if (mask&base) or base == 0:
if "".join(curr) in lookup:
mask = (mask | (base-1)) + 1 if base else mask+1 # pruning, try next mask without base
break
lookup.add("".join(curr))
curr = []
base >>= 1
else:
result = max(result, len(lookup))
mask += 1
return result
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yuhang2__2/LeetCode-Solutions.git
git@gitee.com:yuhang2__2/LeetCode-Solutions.git
yuhang2__2
LeetCode-Solutions
LeetCode-Solutions
master

搜索帮助