1748B Diverse Substrings(c语言)

A non-empty digit string is diverse if the number of occurrences of each character in it doesn't exceed the number of distinct characters in it.

For example:

  • string "7" is diverse because 7 appears in it 1 time and the number of distinct characters in it is 1;

  • string "77" is not diverse because 7 appears in it 2 times and the number of distinct characters in it is 1;

  • string "1010" is diverse because both 0 and 1 appear in it 2 times and the number of distinct characters in it is 2;

  • string "6668" is not diverse because 6 appears in it 3 times and the number of distinct characters in it is 2.

You are given a string s of length n, consisting of only digits 0 to 9. Find how many of its n(n+1)/2 substrings are diverse.

A string aa is a substring of a string b if a can be obtained from b by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.

Note that if the same diverse string appears in s multiple times, each occurrence should be counted independently. For example, there are two diverse substrings in "77" both equal to "7", so the answer for the string "77" is 2.

Input

Each test contains multiple test cases. The first line contains a single integer t (1≤t≤104) — the number of test cases.

The first line of each test case contains a single integer n (1≤n≤105) — the length of the string s.

The second line of each test case contains a string s of length n. It is guaranteed that all characters of s are digits from 0 to 9.

It is guaranteed that the sum of n over all test cases does not exceed 105.

Output

For each test case print one integer — the number of diverse substrings of the given string s.

Example

input

7

1

7

2

77

4

1010

5

01100

6

399996

5

23456

18

789987887987998798

output

1

2

10

12

10

15

106

Note

In the first test case, the diverse substring is "7".

In the second test case, the only diverse substring is "7", which appears twice, so the answer is 22.

In the third test case, the diverse substrings are "0" (2 times), "01", "010", "1" (2 times), "10" (2 times), "101" and "1010".

In the fourth test case, the diverse substrings are "0" (3 times), "01", "011", "0110", "1" (2times), "10", "100", "110" and "1100".

In the fifth test case, the diverse substrings are "3", "39", "399", "6", "9" (4 times), "96" and "996".

In the sixth test case, all 15 non-empty substrings of "23456" are diverse.

题目大意:

数数所有满足条件的子串的个数,子串的每种数字出现次数不超过出现数字的种类。

#include<stdio.h>
#include<string.h>
char s[100002];
int pd(int i,int j){//判断下标i到j的子串
    int num[10]={0},n=0;
    for(;i<=j;i++){
        num[s[i]-'0']++;//记录每个数字出现的次数
        if(num[s[i]-'0']>10)return 0;//每个数字出现的次数不能大于10
    }
    for(i=0;i<10;i++){
        if(num[i]>0)n++;//数种类数
    }
    for(i=0;i<10;i++){
        if(num[i]>n)return 0;//每个数字出现的次数不大于种类数
    }
    return 1;//满足条件
}
int main()
{
    int n,T,cnt;
    scanf("%d",&T);
    while(T--){
        scanf("%d",&n);
        getchar();
        scanf("%s",s);
        cnt=n;
        for(int i=0;i<n;i++){//双重循环判断子串
            for(int j=i+1;j<n&&j<i+100;j++){//子串长度不超过100=(数字种类数10*每种数字最多10次)
                if(pd(i,j))
                    cnt++;
            }
        }
        printf("%d\n",cnt);
    }
    return 0;
}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值