結果
問題 | No.515 典型LCP |
ユーザー | koba-e964 |
提出日時 | 2016-11-06 02:26:30 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,293 bytes |
コンパイル時間 | 451 ms |
コンパイル使用メモリ | 62,388 KB |
実行使用メモリ | 14,108 KB |
最終ジャッジ日時 | 2024-07-08 11:07:44 |
合計ジャッジ時間 | 3,396 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
11,904 KB |
testcase_01 | AC | 149 ms
6,528 KB |
testcase_02 | TLE | - |
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 <algorithm> #include <bitset> #include <cassert> #include <iostream> #include <string> #include <vector> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; typedef long long int ll; typedef vector<int> VI; typedef vector<ll> VL; typedef pair<int, int> PI; const ll mod = 1e9 + 7; const int N = 100010; string s[N]; // Greedy exhaustive search. It should fail with TLE. int main(void){ ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; assert (n <= 100000); int tot_len = 0; REP(i, 0, n) { cin >> s[i]; tot_len += s[i].length(); } assert (tot_len <= 800000); int m; cin >> m; assert (m <= 3000000); ll x, d; cin >> x >> d; ll lim = ll(n) * ll(n - 1); assert (0 <= x); assert (x < lim); assert (d < lim); assert (0 <= d); ll total = 0; REP(loop_cnt, 0, m) { int i, j; i = (x / (n - 1)) + 1; j = (x % (n - 1)) + 1; if (i > j) { swap(i, j); } else { j++; } assert (1 <= i); assert (i < j); assert (j <= n); i--, j--; int pos = 0; int lim = min(s[i].length(), s[j].length()); for (; pos < lim; ++pos) { if (s[i][pos] != s[j][pos]) break; } total += pos; x = (x + d) % (ll(n) * ll(n - 1)); } cout << total << "\n"; }