結果

問題 No.2298 yukicounter
ユーザー HIcoderHIcoder
提出日時 2024-08-15 23:30:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 1,166 bytes
コンパイル時間 1,205 ms
コンパイル使用メモリ 122,056 KB
実行使用メモリ 9,896 KB
最終ジャッジ日時 2024-08-15 23:30:29
合計ジャッジ時間 2,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 27 ms
7,824 KB
testcase_04 AC 11 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 37 ms
9,896 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 22 ms
5,376 KB
testcase_25 AC 10 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 17 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

int main(){
    string yukicoder="yukicoder";
    string S;
    cin>>S;
    int N=S.size();

    auto judge=[&](const string& s)->bool{
        if(s.size()<yukicoder.size()) return false;
        if(s==yukicoder) return true;
        return false;
    };

    vector<int> dp;
    int idx=0;
    for(int idx=0;idx<N;){
        if( judge(S.substr(idx,min(N-idx,(int)yukicoder.size()))) ){
            dp.push_back(1);
            idx+=yukicoder.size();
        }else{
            dp.push_back(0);
            idx++;
        }
    }

    int ans=0;
    int n=dp.size();
    vector<int> sum(n+1);
    for(int i=0;i<n;i++){
        if(dp[i]>0){
            sum[i+1]=sum[i]+dp[i];
        }
    }
    for(int i=0;i<=n;i++){
        ans=max(ans,sum[i]);
    }
    cout<<ans<<endl;

}
0