結果
問題 | No.3015 アンチローリングハッシュ |
ユーザー | tonyu0 |
提出日時 | 2024-05-17 02:05:34 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 839 bytes |
コンパイル時間 | 1,083 ms |
コンパイル使用メモリ | 108,932 KB |
実行使用メモリ | 13,920 KB |
最終ジャッジ日時 | 2024-05-17 02:05:41 |
合計ジャッジ時間 | 5,162 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 11 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 27 ms
13,064 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 5 ms
6,944 KB |
ソースコード
#include <algorithm> #include <iostream> #include <numeric> #include <vector> using namespace std; using ll = long long; #define rep(i, j, n) for (ll i = j; i < (n); ++i) #define rrep(i, j, n) for (ll i = (n) - 1; j <= i; --i) #define all(a) a.begin(), a.end() int main() { cin.tie(0)->sync_with_stdio(0); ll a, b; cin >> a >> b; string s; char c = 0; rep(i, 0, b * 10) { s += c + 'a'; c = (c + 1) % 26; } int n = (int)s.size(); vector<ll> hash(n + 1); rep(i, 0, n) { hash[i + 1] = (hash[i] * a + s[i]) % b; } vector<ll> mp(b); rep(i, 0, n) mp[hash[i]]++; ll mx = 0, mxi = 0; rep(i, 0, b) if (mx < mp[i]) mx = mp[i], mxi = i; vector<int> ids; rep(i, 0, n) if (hash[i] == mxi) ids.push_back(i); string t = s; reverse(t.begin() + ids[0], t.begin() + ids[1]); cout << s << '\n' << t << '\n'; }