結果
問題 | No.1171 Runs in Subsequences |
ユーザー | nikkukun |
提出日時 | 2020-08-14 22:08:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 977 bytes |
コンパイル時間 | 1,546 ms |
コンパイル使用メモリ | 169,464 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 15:24:26 |
合計ジャッジ時間 | 2,656 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 30 ms
6,820 KB |
testcase_16 | AC | 30 ms
6,816 KB |
testcase_17 | AC | 31 ms
6,820 KB |
testcase_18 | AC | 30 ms
6,824 KB |
testcase_19 | AC | 31 ms
6,820 KB |
testcase_20 | AC | 30 ms
6,820 KB |
testcase_21 | AC | 31 ms
6,820 KB |
ソースコード
// 21:03 - #include <bits/stdc++.h> using namespace std; #define fi first #define se second #define all(x) x.begin(), x.end() #define lch (o << 1) #define rch (o << 1 | 1) typedef double db; typedef long long ll; typedef unsigned int ui; typedef pair<int, int> pint; typedef tuple<int, int, int> tint; const int N = 2e5 + 5; const int C = 26 + 2; const int MOD = 1e9 + 7; const int INF = 0x3f3f3f3f; const ll INF_LL = 0x3f3f3f3f3f3f3f3f; string s; ll f[C], g[C]; int main() { ios::sync_with_stdio(0); cin >> s; int n = s.size(); s = ' ' + s; f[26] = 0, g[26] = 1; ll ans = 0; for (int i = 1; i <= n; i++) { int c = s[i] - 'a'; ll nf = 0, ng = 0; for (int d = 0; d <= 26; d++) { if (c == d) { nf = (nf + f[d]) % MOD; ng = (ng + g[d]) % MOD; } else { nf = (nf + f[d] + g[d]) % MOD; ng = (ng + g[d]) % MOD; } } ans = (ans + nf) % MOD; f[c] = (f[c] + nf) % MOD; g[c] = (g[c] + ng) % MOD; } cout << ans << endl; return 0; }