程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> BestCoder Round #81 (div.2) 1004 String(動態規劃)

BestCoder Round #81 (div.2) 1004 String(動態規劃)

編輯:關於C++

題目鏈接:BestCoder Round #81 (div.2) 1003 String

題意

中文題,上有鏈接,就不貼了。

思路

枚舉起點i,計算可以達到k個不同字母的最小下標j,則此時有子串len-j個。
將所有起點的值加起來即是結果。

代碼

#include
#include
#include
using namespace std;
#define LL long long

const int MOD = 1000000007;

char str[1000009];
int num[27];

int get_cnt()
{
    int cnt = 0;
    for(int i=0; i<26; i++)
        cnt += num[i]==0?0:1;
    return cnt;
}

int main()
{
    int T;
    cin>>T;
    while(T--)
    {
        int k;
        memset(num, 0, sizeof(num));
        scanf("%s%d", str, &k);
        int len = strlen(str);
        LL ans = 0;
        int j = -1;
        bool flag = false;
        for(int i=0; i
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved