結果
問題 | No.465 PPPPPPPPPPPPPPPPAPPPPPPPP |
ユーザー | りあん |
提出日時 | 2020-11-23 07:52:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,263 bytes |
コンパイル時間 | 2,431 ms |
コンパイル使用メモリ | 220,860 KB |
実行使用メモリ | 60,904 KB |
最終ジャッジ日時 | 2024-07-23 17:20:09 |
合計ジャッジ時間 | 7,014 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 29 ms
14,080 KB |
testcase_06 | AC | 117 ms
60,044 KB |
testcase_07 | AC | 35 ms
14,720 KB |
testcase_08 | AC | 148 ms
58,076 KB |
testcase_09 | AC | 201 ms
59,336 KB |
testcase_10 | AC | 193 ms
59,080 KB |
testcase_11 | AC | 442 ms
58,780 KB |
testcase_12 | AC | 323 ms
43,484 KB |
testcase_13 | AC | 213 ms
33,408 KB |
testcase_14 | AC | 352 ms
60,728 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 182 ms
60,780 KB |
testcase_21 | AC | 254 ms
60,832 KB |
32_ratsliveonnoevilstar.txt | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using P = pair<int, int>; const int M = 1000000007; const long long LM = 1LL << 60; long long solve(const string& s_) { string s = "^" + s_; int n = s.length(); vector<vector<long long>> pl(n, vector<long long>(3, 0)), gpl(n, vector<long long>(3, 0)); pl[0][0] = 1; vector<tuple<int, int, int>> g; for (int j = 1; j < n; ++j) { vector<tuple<int, int, int>> g1, g2; for (auto [i, d, k] : g) { if (i > 0 && s[i - 1] == s[j]) { g1.emplace_back(i - 1, d, k); } } int r = -j; for (auto [i, d, k] : g1) { if (i - r != d) { g2.emplace_back(i, i - r, 1); if (k > 1) { g2.emplace_back(i + d, d, k - 1); } } else { g2.emplace_back(i, d, k); } r = i + (k - 1) * d; } if (j > 1 && s[j - 1] == s[j]) { g2.emplace_back(j - 1, j - 1 - r, 1); r = j - 1; } g2.emplace_back(j, j - r, 1); g.clear(); for (auto [i, d, k] : g2) { if (g.empty() || get<1>(g[(int)g.size() - 1]) != d) { g.emplace_back(i, d, k); } else { get<2>(g[(int)g.size() - 1]) += k; } } for (auto [i, d, k] : g) { r = i + (k - 1) * d; vector<long long> m = { 0LL, pl[r - 1][0], pl[r - 1][1] }; if (k > 1) { m[1] += gpl[i - d][1]; m[2] += gpl[i - d][2]; } if (d <= i) { gpl[i - d] = m; } pl[j][1] += m[1]; pl[j][2] += m[2]; } } long long ans = 0; vector<int> a(n); a[0] = pl[0][2]; for (int i = 1; i < n; ++i) { a[i] = a[i - 1] + pl[i][2]; } for (auto [i, d, k] : g) { for (int j = 0; j < k; ++j) { if (i + d * j > 1) { ans += a[i + d * j - 2]; } } } return ans; } int main() { cin.tie(0); ios::sync_with_stdio(0); string s; cin >> s; cout << solve(s) << '\n'; return 0; }