結果
問題 | No.2388 At Least K-Characters |
ユーザー | ococonomy1 |
提出日時 | 2023-07-21 22:59:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 383 ms / 4,000 ms |
コード長 | 3,076 bytes |
コンパイル時間 | 1,302 ms |
コンパイル使用メモリ | 124,132 KB |
実行使用メモリ | 247,888 KB |
最終ジャッジ日時 | 2024-07-05 03:54:59 |
合計ジャッジ時間 | 10,132 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 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 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 3 ms
6,944 KB |
testcase_14 | AC | 3 ms
6,944 KB |
testcase_15 | AC | 3 ms
6,940 KB |
testcase_16 | AC | 362 ms
247,816 KB |
testcase_17 | AC | 339 ms
247,820 KB |
testcase_18 | AC | 383 ms
247,872 KB |
testcase_19 | AC | 380 ms
247,708 KB |
testcase_20 | AC | 367 ms
247,840 KB |
testcase_21 | AC | 377 ms
247,852 KB |
testcase_22 | AC | 366 ms
247,764 KB |
testcase_23 | AC | 364 ms
247,700 KB |
testcase_24 | AC | 359 ms
247,832 KB |
testcase_25 | AC | 383 ms
247,844 KB |
testcase_26 | AC | 368 ms
247,828 KB |
testcase_27 | AC | 365 ms
247,824 KB |
testcase_28 | AC | 369 ms
247,820 KB |
testcase_29 | AC | 359 ms
247,776 KB |
testcase_30 | AC | 361 ms
247,884 KB |
testcase_31 | AC | 366 ms
247,860 KB |
testcase_32 | AC | 380 ms
247,824 KB |
testcase_33 | AC | 382 ms
247,756 KB |
testcase_34 | AC | 372 ms
247,888 KB |
testcase_35 | AC | 370 ms
247,856 KB |
testcase_36 | AC | 363 ms
247,692 KB |
ソースコード
// #pragma GCC target("avx2") // #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #include <algorithm> #include <bitset> #include <cassert> #include <climits> #include <cmath> #include <complex> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <set> #include <string> #include <tuple> #include <vector> using namespace std; using lg = long long; using pii = pair<int, int>; using pll = pair<lg, lg>; #define TEST cerr << "TEST" << endl #define AMARI 998244353 // #define AMARI 1000000007 #define TEMOTO ((sizeof(long double) == 16) ? false : true) #define TIME_LIMIT 1980 * (TEMOTO ? 1 : 1000) #define el '\n' #define El '\n' #define mpr make_pair #define MULTI_TEST_CASE false void solve(void) { int n,m,k; cin >> n >> m >> k; string s; cin >> s; vector<int> icutume(n); set<char> tst; for(int i = 0; i < s.size(); i++){ tst.insert(s[i]); icutume[i] = tst.size(); } vector<vector<lg>> smaller(m + 1,vector<lg>(27,0)),just(m + 1,vector<lg>(27,0)); just[0][0] = 1; //配るDP vector<bool> visited(26,false); for(int i = 0; i < m; i++){ //just →just if(i < n)just[i + 1][icutume[i]] = 1; for(int j = 0; j <= 26; j++){ //smaller → smaller //if(i == 1 && j == 1)cerr << smaller[i][j] << el; smaller[i + 1][j] += smaller[i][j] * (lg)j; smaller[i + 1][j] %= AMARI; if(j != 26){ smaller[i + 1][j + 1] += smaller[i][j] * (lg)(26 - j); smaller[i + 1][j + 1] %= AMARI; } //just → smaller if(!just[i][j])continue; int tc = 0,fc = 0; if(i >= s.size())continue; //smallerに持ってけるアルファベットが何種類あるか for(int k = 0; k < s[i] - 'a'; k++){ if(visited[k])tc++; else fc++; } visited[s[i] - 'a'] = true; //if(i == 1)cerr << tc << ' ' << fc << el; smaller[i + 1][j] += tc; if(smaller[i + 1][j] > AMARI)smaller[i + 1][j] -= AMARI; if(fc){ smaller[i + 1][j + 1] += fc; if(smaller[i + 1][j + 1] > AMARI)smaller[i + 1][j + 1] -= AMARI; } } } lg ans = 0; if(true){ for(int i = 0; i <= m; i++){ for(int j = 0; j <= 26; j++){ if(j >= k)ans += smaller[i][j]; if(ans > AMARI)ans -= AMARI; //cerr << smaller[i][j] << ' '; //if(i < n && j >= k)ans += just[i][j]; } //cerr << el; } for(int i = 0; i < n - 1; i++)if(icutume[i] >= k)ans++; if(ans > AMARI)ans -= AMARI; } cout << ans << el; return; } void calc(void) { return; } int main(void) { cin.tie(nullptr); ios::sync_with_stdio(false); calc(); int t = 1; if (MULTI_TEST_CASE) cin >> t; while (t--) { solve(); } return 0; }