結果
問題 | No.515 典型LCP |
ユーザー | mamekin |
提出日時 | 2017-05-06 00:58:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,848 bytes |
コンパイル時間 | 1,411 ms |
コンパイル使用メモリ | 118,024 KB |
実行使用メモリ | 135,348 KB |
最終ジャッジ日時 | 2024-09-14 09:49:50 |
合計ジャッジ時間 | 12,939 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 960 ms
135,348 KB |
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 | 549 ms
115,484 KB |
testcase_06 | AC | 647 ms
115,428 KB |
testcase_07 | AC | 525 ms
115,432 KB |
testcase_08 | AC | 662 ms
115,584 KB |
testcase_09 | AC | 879 ms
115,968 KB |
testcase_10 | AC | 482 ms
115,920 KB |
testcase_11 | AC | 473 ms
115,940 KB |
testcase_12 | AC | 478 ms
115,936 KB |
testcase_13 | AC | 635 ms
115,576 KB |
testcase_14 | AC | 220 ms
92,288 KB |
testcase_15 | AC | 510 ms
115,064 KB |
testcase_16 | AC | 526 ms
114,944 KB |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> #include <iterator> using namespace std; class RollingHash { private: static const int X[], M[]; vector<vector<long long> > xp; vector<vector<long long> > hash; public: RollingHash(const string& s){ int n = s.size(); xp.assign(n+1, vector<long long>(3, 1)); hash.assign(n+1, vector<long long>(3, 0)); for(int i=0; i<n; ++i){ for(int j=0; j<3; ++j){ hash[i+1][j] = hash[i][j]; hash[i+1][j] *= X[j]; hash[i+1][j] += s[i]; hash[i+1][j] %= M[j]; xp[i+1][j] = xp[i][j]; xp[i+1][j] *= X[j]; xp[i+1][j] %= M[j]; } } } tuple<long long, long long, long long> getHash(int a) const{ return make_tuple(hash[a+1][0], hash[a+1][1], hash[a+1][2]); } tuple<long long, long long, long long> getHash(int a, int b) const{ vector<long long> ans(3); for(int i=0; i<3; ++i){ ans[i] = hash[b+1][i]; ans[i] -= hash[a][i] * xp[b-a+1][i]; ans[i] %= M[i]; if(ans[i] < 0) ans[i] += M[i]; } return make_tuple(ans[0], ans[1], ans[2]); } }; const int RollingHash::X[] = {1685440109, 1389328937, 1813126193}; // 素数 const int RollingHash::M[] = {2000000087, 2000000089, 2000000099}; // 合同式の法(素数) int solve(int len, const RollingHash& a, const RollingHash& b) { int left = 0; int right = len; while(left < right){ int mid = (left + right + 1) / 2; if(a.getHash(mid-1) != b.getHash(mid-1)) right = mid - 1; else left = mid; } return left; } int main() { int n; cin >> n; vector<string> s(n); for(int i=0; i<n; ++i) cin >> s[i]; vector<RollingHash> rh; for(int i=0; i<n; ++i) rh.push_back(RollingHash(s[i])); int m; long long x, d; cin >> m >> x >> d; vector<int> a(m), b(m); for(int i=0; i<m; ++i){ a[i] = (int)(x / (n - 1)); b[i] = (int)(x % (n - 1)); if(a[i] > b[i]) swap(a[i], b[i]); else ++ b[i]; x = (x + d) % (n * (n - 1LL)); } long long ans = 0; for(int i=0; i<m; ++i){ int len = min(s[a[i]].size(), s[b[i]].size()); ans += solve(len, rh[a[i]], rh[b[i]]); } cout << ans << endl; return 0; }