結果
問題 | No.515 典型LCP |
ユーザー | paruki |
提出日時 | 2017-05-06 12:02:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,095 bytes |
コンパイル時間 | 1,799 ms |
コンパイル使用メモリ | 174,680 KB |
実行使用メモリ | 44,928 KB |
最終ジャッジ日時 | 2024-09-14 13:50:01 |
合計ジャッジ時間 | 15,829 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 752 ms
28,544 KB |
testcase_06 | AC | 996 ms
28,544 KB |
testcase_07 | AC | 703 ms
28,416 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 341 ms
28,416 KB |
testcase_11 | AC | 329 ms
28,416 KB |
testcase_12 | AC | 331 ms
28,416 KB |
testcase_13 | AC | 947 ms
28,288 KB |
testcase_14 | AC | 34 ms
29,056 KB |
testcase_15 | AC | 786 ms
28,544 KB |
testcase_16 | AC | 817 ms
28,416 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define mt make_tuple #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() #define pb push_back typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; struct RollingHash { static const int C = 31, C2 = 29, P = 1000000007, P2 = 1000000009; int _n; vector<long long> pw, pw2, hs, hs2; RollingHash() {} RollingHash(const string &st) :_n((int)st.size()), pw(_n + 1), pw2(_n + 1), hs(_n + 1), hs2(_n + 1) { pw[0] = pw2[0] = 1; rep(i, _n) { pw[i + 1] = (pw[i] * C) % P; pw2[i + 1] = (pw2[i] * C2) % P2; hs[i + 1] = (C*hs[i] + st[i]) % P; hs2[i + 1] = (C2*hs2[i] + st[i]) % P2; } } // [l, r) pii getHash(int l, int r) { int res, res2; res = (hs[r] - hs[l] * pw[r - l]) % P; res2 = (hs2[r] - hs2[l] * pw2[r - l]) % P2; if (res < 0)res += P; if (res2 < 0)res2 += P2; return mp(res, res2); } }; int main(){ ios::sync_with_stdio(false); cin.tie(0); int N; cin >> N; vector<RollingHash> rhs(N); vi len(N); rep(i, N) { string s; cin >> s; rhs[i] = RollingHash(s); len[i] = sz(s); } ll M, x, d, ans = 0; cin >> M >> x >> d; while (M--) { ll l = (x / (N - 1)) + 1, r = (x % (N - 1)) + 1; if (l > r)swap(l, r); else r++; x = (x + d) % (N*(N - 1ll)); --l; --r; int lb = 0, ub = min(len[l], len[r]) + 1, mid; while (ub - lb > 1) { mid = (lb + ub) / 2; (rhs[l].getHash(0, mid) == rhs[r].getHash(0, mid) ? lb : ub) = mid; } ans += lb; } cout << ans << endl; }