ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

LeetCode 828. Count Unique Characters of All Substrings of a Given String

2022-07-26 06:00:06  阅读:239  来源: 互联网

标签:Count Given last String int countUniqueChars substrings ind unique


原题链接在这里:https://leetcode.com/problems/count-unique-characters-of-all-substrings-of-a-given-string/

题目:

Let's define a function countUniqueChars(s) that returns the number of unique characters on s.

  • For example, calling countUniqueChars(s) if s = "LEETCODE" then "L""T""C""O""D" are the unique characters since they appear only once in s, therefore countUniqueChars(s) = 5.

Given a string s, return the sum of countUniqueChars(t) where t is a substring of s. The test cases are generated such that the answer fits in a 32-bit integer.

Notice that some substrings can be repeated so in this case you have to count the repeated ones too.

Example 1:

Input: s = "ABC"
Output: 10
Explanation: All possible substrings are: "A","B","C","AB","BC" and "ABC".
Every substring is composed with only unique letters.
Sum of lengths of all substring is 1 + 1 + 1 + 2 + 2 + 3 = 10

Example 2:

Input: s = "ABA"
Output: 8
Explanation: The same as example 1, except countUniqueChars("ABA") = 1.

Example 3:

Input: s = "LEETCODE"
Output: 92

Constraints:

  • 1 <= s.length <= 105
  • s consists of uppercase English letters only.

题解:

Instead of counting unique characters of all the substrings, we could for each character, how many substrings it could contribute as unique character.

XAXXAXXXX, for the first A, it could contribute to XA, A, AX, AXX, XAX, XAXX, 2 * 3 = 6. There are 2 choices before A and 3 choices after A.

Thus for each index, mark the last two occurance of its apparence.

Time Complexity: O(n). n = s.length().

Space: O(1).

AC Java:

 1 class Solution {
 2     public int uniqueLetterString(String s) {
 3         int [][] last = new int[26][2];
 4         for(int i = 0; i < 26; i++){
 5             Arrays.fill(last[i], - 1);
 6         }
 7         
 8         int res = 0;
 9         for(int i = 0; i < s.length(); i++){
10             int ind = s.charAt(i) - 'A';
11             res += (i - last[ind][1]) * (last[ind][1] - last[ind][0]);
12             last[ind] = new int[]{last[ind][1], i};
13         }
14         
15         for(int i = 0; i < 26; i++){
16             res += (s.length() - last[i][1]) * (last[i][1] - last[i][0]);
17         }
18         
19         return res;
20     }
21 }

类似Total Appeal of A String.

标签:Count,Given,last,String,int,countUniqueChars,substrings,ind,unique
来源: https://www.cnblogs.com/Dylan-Java-NYC/p/16519462.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有