結果
問題 | No.515 典型LCP |
ユーザー | tansunogon |
提出日時 | 2017-05-06 03:45:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,662 bytes |
コンパイル時間 | 1,339 ms |
コンパイル使用メモリ | 85,140 KB |
実行使用メモリ | 28,728 KB |
最終ジャッジ日時 | 2024-09-14 12:16:42 |
合計ジャッジ時間 | 5,787 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include <iostream> using namespace std; struct iostream_init_struct { iostream_init_struct() { std::cin.tie(0); std::cin.sync_with_stdio(false); } } iostream_init; // thank you very much http://tookunn.hatenablog.com/entry/2016/07/13/211148 #include <vector> #include <algorithm> class RMQ_SparseTable { public: // table[k][i] means index of minimum value in [i, i + 2^k) std::vector<std::vector<int>> table; int * values; RMQ_SparseTable(int* A, size_t N) { table = std::vector<std::vector<int>>(log(N) + 1, vector<int>(N)); values = A; for (int i = 0; i < N; ++i) { table[0][i] = i; } for (int k = 1; (1 << k) <= N; k++) { for (int i = 0; i + (1 << k) <= N; ++i) { int first = table[k - 1][i]; int second = table[k - 1][i + (1 << (k - 1))]; if (A[first] < A[second]) { table[k][i] = first; } else { table[k][i] = second; } } } } // returns min value in [s, t) int getMin(int s, int t) { int range = t - s; int k = log(range); int value1 = values[table[k][s]]; int value2 = values[table[k][t - (1 << k)]]; return min(value1, value2); } static int log(int n) { int ret = 0; while (n = n >> 1) { ret += 1; } return ret; } }; #include <string> #include <algorithm> int N; pair<string, int> s[100000]; int M, x, d, i, j; int index_table[100000]; int LCP_table[100000]; void next() { i = (x / (N - 1)); j = (x % (N - 1)); if (i > j) { int temp = i; i = j; j = temp; } else { j = j + 1; } x = (x + d) % (N * (N - 1)); } int LCP(const char* s1, const char* s2, size_t min_length) { int ret = 0; const uint64_t* s64i = reinterpret_cast<const uint64_t*>(s1); const uint64_t* s64j = reinterpret_cast<const uint64_t*>(s2); while (ret < min_length / 8) { if (s64i[ret] == s64j[ret]) { ++ret; } else { break; } } ret *= 8; while (ret < min_length) { if (s1[ret] == s2[ret]) { ++ret; } else { break; } } return ret; } int main() { // get input cin >> N; for (int i = 0; i < N; ++i) { cin >> s[i].first; s[i].second = i; } cin >> M >> x >> d; // sort sort(s, s + N); // reindex for (int i = 0; i < N; ++i) { index_table[s[i].second] = i; } // calc LCP for (int i = 0; i < N - 1; ++i) { string& s1 = s[i].first; string& s2 = s[i + 1].first; LCP_table[i] = LCP(s1.c_str(), s2.c_str(), min(s1.size(), s2.size())); } // make Sparse Table RMQ_SparseTable sparse_table(LCP_table, N - 1); // calc ans int sum = 0; for (int indx = 0; indx < M; ++indx) { next(); sum += sparse_table.getMin(index_table[i], index_table[j]); } cout << sum << endl; }