結果
問題 | No.2388 At Least K-Characters |
ユーザー | iomir |
提出日時 | 2023-07-21 22:56:08 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,832 bytes |
コンパイル時間 | 2,464 ms |
コンパイル使用メモリ | 215,344 KB |
実行使用メモリ | 296,792 KB |
最終ジャッジ日時 | 2024-07-05 03:55:55 |
合計ジャッジ時間 | 52,355 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define all(v) v.begin(),v.end() using ll = long long; using ull = unsigned long long; using vll=vector<ll>; using vvll = vector<vector<ll>>; using P = pair<ll,ll>; using vp=vector<pair<ll, ll>>; const ll INF=1ll<<60; ll mod10=1e9+7; ll mod99=998244353; const double PI = acos(-1); #define rep(i,n) for (ll i=0;i<n;++i) #define per(i,n) for(ll i=n-1;i>=0;--i) #define rep2(i,a,n) for (ll i=a;i<n;++i) #define per2(i,a,n) for (ll i=a;i>=n;--i) template <typename T> bool chmax(T &a,const T& b){ if(a<b){ a=b; return true; } return false; } template <typename T> bool chmin(T &a,const T& b){ if(a>b){ a=b; return true; } return false; } int main(){ ll N,M,K; cin>>N>>M>>K; string S; cin>>S; vector<vvll> dp(M+1,vvll(2,vll(30))); dp[0][0][0]=1; set<int> st; rep(i,M){ rep(k,27){ if(i<N){ if(st.count(S[i]))dp[i+1][0][k]+=dp[i][0][k]; else dp[i+1][0][k+1]+=dp[i][0][k]; dp[i+1][1][k+1]+=dp[i][1][k]*(26-k); dp[i+1][1][k]+=dp[i][1][k]*k; ll cnt0=0,cnt1=0; rep(s,S[i]-'a'){ if(st.count(s+'a'))cnt1++; else cnt0++; } dp[i+1][1][k+1]+=dp[i][0][k]*cnt0; dp[i+1][1][k]+=dp[i][0][k]*cnt1; }else{ dp[i+1][1][k+1]+=dp[i][1][k]*(26-k); dp[i+1][1][k]+=dp[i][1][k]*k; } dp[i+1][1][k]%=mod99; dp[i+1][1][k+1]%=mod99; dp[i+1][0][k]%=mod99; dp[i+1][0][k+1]%=mod99; } st.insert(S[i]); } ll ans=0; rep(i,M+1) rep2(k,K,27) ans=(ans+dp[i][1][k])%mod99; cout << ans << endl; }