結果
問題 | No.515 典型LCP |
ユーザー | mamekin |
提出日時 | 2017-05-06 00:05:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 236 ms / 1,000 ms |
コード長 | 2,234 bytes |
コンパイル時間 | 2,168 ms |
コンパイル使用メモリ | 121,980 KB |
実行使用メモリ | 38,056 KB |
最終ジャッジ日時 | 2024-09-14 10:05:32 |
合計ジャッジ時間 | 4,864 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 236 ms
38,056 KB |
testcase_01 | AC | 236 ms
37,856 KB |
testcase_02 | AC | 157 ms
27,560 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 137 ms
27,816 KB |
testcase_06 | AC | 138 ms
27,824 KB |
testcase_07 | AC | 137 ms
27,840 KB |
testcase_08 | AC | 147 ms
27,976 KB |
testcase_09 | AC | 139 ms
28,272 KB |
testcase_10 | AC | 141 ms
28,240 KB |
testcase_11 | AC | 141 ms
28,244 KB |
testcase_12 | AC | 140 ms
28,280 KB |
testcase_13 | AC | 141 ms
27,812 KB |
testcase_14 | AC | 21 ms
6,940 KB |
testcase_15 | AC | 137 ms
27,580 KB |
testcase_16 | AC | 137 ms
27,640 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 SparseTable { private: vector<int> logTable; vector<vector<int> > data; public: SparseTable(const vector<int>& v){ int n = v.size(); logTable.assign(n+1, 0); for(int i=2; i<=n; ++i) logTable[i] = logTable[i>>1] + 1; data.assign(1, v); for(int i=1; (1<<i)<=n; ++i){ int len = 1 << i; data.push_back(vector<int>(n - len + 1)); for(int j=0; j<n-len+1; ++j) data[i][j] = min(data[i-1][j], data[i-1][j+len/2]); } } int query(int a, int b){ int i = logTable[b-a+1]; int len = 1 << i; return min(data[i][a], data[i][b-len+1]); } }; int main() { int n; cin >> n; vector<pair<string, int> > v(n); for(int i=0; i<n; ++i){ cin >> v[i].first; v[i].second = i; } sort(v.begin(), v.end()); vector<int> index(n); for(int i=0; i<n; ++i) index[v[i].second] = i; vector<int> len(n-1, 0); for(int i=0; i<n-1; ++i){ int maxLen = min(v[i].first.size(), v[i+1].first.size()); while(len[i] < maxLen && v[i].first[len[i]] == v[i+1].first[len[i]]) ++ len[i]; } SparseTable st(len); 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 a2 = index[a[i]]; int b2 = index[b[i]]; if(a2 > b2) swap(a2, b2); ans += st.query(a2, b2 - 1); } cout << ans << endl; return 0; }