HDU - 6480 Count Task

本文介绍了一种算法,用于解决一个字符串中包含多少个由单一字母组成的连续子串的问题。通过对连续相同字符的计数,利用等差数列求和公式计算组合数量,实现了高效求解。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Description:

Count is one of WNJXYK’s favorite tasks. Recently, he had a very long string and he wondered that how many substrings which contains exactly one kind of lowercase in this long string. But this string is so long that he had kept counting for several days. His friend Kayaking wants to help him, so he turns to you for help.

Input

The input starts with one line contains exactly one positive integer TT which is the number of test cases. 
Each test case contains one line with a string which you need to do a counting task on.

Output

For each test case, output one line containing “y” where y is the number of target substrings.

Sample Input

3
qwertyuiop
qqwweerrttyyuuiioopp
aaaaaaaaaa

Sample Output

10
30
55

题意:

给出一个字符串求包含有多少单个字母组成的连续子串,规律题。

找到连续的单个字符的长度然后通过等差数列前n项和公式求出组合。

AC代码:

#include<iostream>
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
typedef long long ll;
#define inf 0x3f3f3f3f
char a[100010];
int i,j,k;
int n,m;
ll ans;
int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%s",&a);
        int len=strlen(a);
        ll cnt;
        ans=0;
        for(i=0; i<len; i++)
        {
            cnt=1;
            while(i+1<len)
            {
                if(a[i]==a[i+1])
                {
                    cnt++;
                    i++;
                }
                else
                    break;
            }
            ans+=cnt*(cnt+1)/2;
        }
        printf("%lld\n",ans);
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值