【Leetcode】1593. Split a String Into the Max Number of Unique Substrings

题目地址:

https://leetcode.com/problems/split-a-string-into-the-max-number-of-unique-substrings/description/

给定一个长 n n n的字符串 s s s,问最多能将其划分为多少个互不相同的非空子串。

直接暴力枚举即可,可以用字符串哈希加速。代码如下:

class Solution {
 public:
  using UL = unsigned long;
  int maxUniqueSplit(string s) {
    UL P = 131;
    int n = s.size();
    vector<UL> pow(n + 1), ha(n + 1);
    pow[0] = 1;
    for (int i = 1; i <= n; i++) {
      pow[i] = pow[i - 1] * P;
      ha[i] = ha[i - 1] * P + s[i - 1];
    }

    unordered_set<UL> st;
    return dfs(0, s, st, pow, ha);
  }

  int dfs(int u, string& s, unordered_set<UL>& st, vector<UL>& pow,
          vector<UL>& ha) {
    if (u == s.size()) return 0;
    int res = -1;
    for (int i = u; i < s.size(); i++) {
      auto h = hash(u, i, pow, ha);
      // 略过已经出现过的子串
      if (st.count(h)) continue;
      st.insert(h);
      int t = dfs(i + 1, s, st, pow, ha);
      if (~t) res = max(res, 1 + t);
      // 回溯恢复现场
      st.erase(h);
    }

    return res;
  }

  UL hash(int l, int r, vector<UL>& pow, vector<UL>& ha) {
    return ha[r + 1] - ha[l] * pow[r - l + 1];
  }
};

时空复杂度指数级。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值