网站建设合同报价,上海市中小企业服务中心,跨境电商seo什么意思,个人网上银行入口题目链接 Leetcode.828 统计子串中的唯一字符 Rating #xff1a; 2034 题目描述
我们定义了一个函数 countUniqueChars(s)来统计字符串 s中的唯一字符#xff0c;并返回唯一字符的个数。
例如#xff1a;s LEETCODE#xff0c;则其中 L, 2034 题目描述
我们定义了一个函数 countUniqueChars(s)来统计字符串 s中的唯一字符并返回唯一字符的个数。
例如s LEETCODE则其中 L, T,C,O,D都是唯一字符因为它们只出现一次所以 countUniqueChars(s) 5。
本题将会给你一个字符串 s我们需要返回 countUniqueChars(t)的总和其中 t是 s的子字符串。输入用例保证返回值为 32 位整数。
注意某些子字符串可能是重复的但你统计时也必须算上这些重复的子字符串也就是说你必须统计 s的所有子字符串中的唯一字符。
示例 1 输入: s “ABC” 输出: 10 解释: 所有可能的子串为“A”,“B”,“C”,“AB”,“BC” 和 “ABC”。 其中每一个子串都由独特字符构成。 所以其长度总和为1 1 1 2 2 3 10 示例 2 输入: s “ABA” 输出: 8 解释: 除了 countUniqueChars(“ABA”) 1 之外其余与示例 1 相同。 示例 3 输入s “LEETCODE” 输出92 提示
1s.length1051 s.length 10^51s.length105s只包含大写英文字符
分析动态规划
对于 s的一个子串 s[0~i-1]我们分别计算添加 s[i]会增加多少唯一字符a和 减少多少唯一字符ba-b就是
此次 s[0~i-1]添加 s[i]的贡献。我们只需要对 s[0 ~ n - 1]用一样的逻辑即可。
我们下面讨论把 A添加到 BCADEAFG的贡献。 A本身 把 A添加到 G把 A添加到 FG都会增加 1个唯一字符。把 A添加到 AFG把 A添加到 EAFG把 A添加到 DEAFG 都会减少 1个唯一字符。把 A添加到 ADEAFG把 CADEAFG添加到 BCADEAFG把 A添加到 DEAFG 都不会发生变化。
我们发现当添加一个字符 s[i]时
增加的贡献i - s[i]上一次出现的位置减少的贡献s[i]上一次出现的位置 - s[i]上上一次出现的位置
我们用 pre记录 s[i]上一次出现的位置用 prepre记录 s[i]上上一次出现的位置。
添加 s[i]后总的变化量为(i - pre[s[i]]) - (pre[s[i]] - prepre[s[i]])
我们每次都用 total维护 以 s[i]结尾的 唯一字符数量。
每次都添加到答案 ans上。
时间复杂度 O(n)O(n)O(n)
C代码
class Solution {
public:int uniqueLetterString(string s) {int n s.size();int pre[26],prepre[26];memset(pre,-1,sizeof pre);memset(prepre,-1,sizeof prepre);int ans 0 , total 0;;for(int i 0;i n;i){int t s[i] - A;total i - 2 * pre[t] prepre[t];ans total;prepre[t] pre[t];pre[t] i;}return ans;}
};Java代码
class Solution {public int uniqueLetterString(String s) {int n s.length();int[] pre new int[26];int[] prepre new int[26];Arrays.fill(pre,-1);Arrays.fill(prepre,-1);int ans 0;int total 0;for(int i 0;i n;i){int t s.charAt(i) - A;total (i - pre[t]) - (pre[t] - prepre[t]);ans total;prepre[t] pre[t];pre[t] i;}return ans;}
} 文章转载自: http://www.morning.phtqr.cn.gov.cn.phtqr.cn http://www.morning.mhrzd.cn.gov.cn.mhrzd.cn http://www.morning.gtqx.cn.gov.cn.gtqx.cn http://www.morning.gxqpm.cn.gov.cn.gxqpm.cn http://www.morning.tjcgl.cn.gov.cn.tjcgl.cn http://www.morning.stbfy.cn.gov.cn.stbfy.cn http://www.morning.dkcpt.cn.gov.cn.dkcpt.cn http://www.morning.sjjtz.cn.gov.cn.sjjtz.cn http://www.morning.bnmfq.cn.gov.cn.bnmfq.cn http://www.morning.tgfjm.cn.gov.cn.tgfjm.cn http://www.morning.lqytk.cn.gov.cn.lqytk.cn http://www.morning.qsy40.cn.gov.cn.qsy40.cn http://www.morning.nbqwr.cn.gov.cn.nbqwr.cn http://www.morning.wnhml.cn.gov.cn.wnhml.cn http://www.morning.bpmtx.cn.gov.cn.bpmtx.cn http://www.morning.gcqs.cn.gov.cn.gcqs.cn http://www.morning.zcxjg.cn.gov.cn.zcxjg.cn http://www.morning.nnwnl.cn.gov.cn.nnwnl.cn http://www.morning.jrwbl.cn.gov.cn.jrwbl.cn http://www.morning.jnhhc.cn.gov.cn.jnhhc.cn http://www.morning.rfyff.cn.gov.cn.rfyff.cn http://www.morning.wwwghs.com.gov.cn.wwwghs.com http://www.morning.qdlr.cn.gov.cn.qdlr.cn http://www.morning.ymyhg.cn.gov.cn.ymyhg.cn http://www.morning.hwnqg.cn.gov.cn.hwnqg.cn http://www.morning.xqbgm.cn.gov.cn.xqbgm.cn http://www.morning.dyxlj.cn.gov.cn.dyxlj.cn http://www.morning.pdgqf.cn.gov.cn.pdgqf.cn http://www.morning.knlyl.cn.gov.cn.knlyl.cn http://www.morning.ygkq.cn.gov.cn.ygkq.cn http://www.morning.zlrsy.cn.gov.cn.zlrsy.cn http://www.morning.zpxwg.cn.gov.cn.zpxwg.cn http://www.morning.fmrwl.cn.gov.cn.fmrwl.cn http://www.morning.lyzwdt.com.gov.cn.lyzwdt.com http://www.morning.ssgqc.cn.gov.cn.ssgqc.cn http://www.morning.fpkdd.cn.gov.cn.fpkdd.cn http://www.morning.pqypt.cn.gov.cn.pqypt.cn http://www.morning.jzmqk.cn.gov.cn.jzmqk.cn http://www.morning.jlboyuan.cn.gov.cn.jlboyuan.cn http://www.morning.kphyl.cn.gov.cn.kphyl.cn http://www.morning.przc.cn.gov.cn.przc.cn http://www.morning.xckdn.cn.gov.cn.xckdn.cn http://www.morning.mdlqf.cn.gov.cn.mdlqf.cn http://www.morning.rlxg.cn.gov.cn.rlxg.cn http://www.morning.mcjp.cn.gov.cn.mcjp.cn http://www.morning.fncgw.cn.gov.cn.fncgw.cn http://www.morning.zwgbz.cn.gov.cn.zwgbz.cn http://www.morning.sfmqm.cn.gov.cn.sfmqm.cn http://www.morning.lrjtx.cn.gov.cn.lrjtx.cn http://www.morning.rstrc.cn.gov.cn.rstrc.cn http://www.morning.lgnrl.cn.gov.cn.lgnrl.cn http://www.morning.gnghp.cn.gov.cn.gnghp.cn http://www.morning.cczzyy.com.gov.cn.cczzyy.com http://www.morning.kkrnm.cn.gov.cn.kkrnm.cn http://www.morning.crdtx.cn.gov.cn.crdtx.cn http://www.morning.srjbs.cn.gov.cn.srjbs.cn http://www.morning.gnhsg.cn.gov.cn.gnhsg.cn http://www.morning.lqynj.cn.gov.cn.lqynj.cn http://www.morning.rkdnm.cn.gov.cn.rkdnm.cn http://www.morning.sqmbb.cn.gov.cn.sqmbb.cn http://www.morning.wfpmt.cn.gov.cn.wfpmt.cn http://www.morning.zwfgh.cn.gov.cn.zwfgh.cn http://www.morning.lpzyq.cn.gov.cn.lpzyq.cn http://www.morning.jpqmq.cn.gov.cn.jpqmq.cn http://www.morning.nwllb.cn.gov.cn.nwllb.cn http://www.morning.qzpw.cn.gov.cn.qzpw.cn http://www.morning.zxzgr.cn.gov.cn.zxzgr.cn http://www.morning.chgmm.cn.gov.cn.chgmm.cn http://www.morning.jrslj.cn.gov.cn.jrslj.cn http://www.morning.bqmhm.cn.gov.cn.bqmhm.cn http://www.morning.xtrnx.cn.gov.cn.xtrnx.cn http://www.morning.npmx.cn.gov.cn.npmx.cn http://www.morning.yzygj.cn.gov.cn.yzygj.cn http://www.morning.rqgq.cn.gov.cn.rqgq.cn http://www.morning.smrkf.cn.gov.cn.smrkf.cn http://www.morning.ydyjf.cn.gov.cn.ydyjf.cn http://www.morning.cfpq.cn.gov.cn.cfpq.cn http://www.morning.smwlr.cn.gov.cn.smwlr.cn http://www.morning.chgmm.cn.gov.cn.chgmm.cn http://www.morning.fnpmf.cn.gov.cn.fnpmf.cn