結果

問題 No.515 典型LCP
ユーザー femtofemto
提出日時 2017-05-06 02:21:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 925 ms / 1,000 ms
コード長 1,201 bytes
コンパイル時間 1,493 ms
コンパイル使用メモリ 169,428 KB
実行使用メモリ 24,540 KB
最終ジャッジ日時 2023-10-12 11:30:22
合計ジャッジ時間 9,036 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 925 ms
24,540 KB
testcase_01 AC 757 ms
24,472 KB
testcase_02 AC 394 ms
21,204 KB
testcase_03 AC 5 ms
8,840 KB
testcase_04 AC 5 ms
8,924 KB
testcase_05 AC 372 ms
21,420 KB
testcase_06 AC 422 ms
21,492 KB
testcase_07 AC 347 ms
21,428 KB
testcase_08 AC 423 ms
21,556 KB
testcase_09 AC 352 ms
21,496 KB
testcase_10 AC 141 ms
21,640 KB
testcase_11 AC 139 ms
21,412 KB
testcase_12 AC 141 ms
21,408 KB
testcase_13 AC 418 ms
21,280 KB
testcase_14 AC 19 ms
21,484 KB
testcase_15 AC 331 ms
21,380 KB
testcase_16 AC 433 ms
21,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

struct RollingHash {
	int n;
	static const unsigned P = 1000000007U;
	vector<unsigned long long> pow, phash;
	RollingHash() {};
	template<typename T>
	RollingHash(const T& s, unsigned long long Q = 1) {
		n = s.size();
		pow.resize(n + 1); phash.resize(n + 1);
		pow[0] = Q; phash[0] = 0;
		for(int i = 0; i < n; i++) {
			pow[i + 1] = pow[i] * P;
			phash[i + 1] = s[i] + phash[i] * P;
		}
	}
	unsigned long long get(int i) const { return phash[i]; }
	unsigned long long get(int i, int j) const { return get(j) - get(i) * pow[j - i]; }
};

RollingHash h[100000];

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	ll N, M, x, d;
	cin >> N;
	for(int i = 0; i < N; i++) {
		string s;
		cin >> s;
		h[i] = RollingHash(s);
	}
	cin >> M >> x >> d;

	ll ans = 0;
	for(int k = 0; k < M; k++) {
		int i = x / (N - 1) + 1, j = x % (N - 1) + 1;
		if(i > j) swap(i, j);
		else j++;
		x = (x + d) % (N * (N - 1));
		i--, j--;
		int ok = 0, ng = min(h[i].n, h[j].n) + 1;
		while(abs(ok - ng) > 1) {
			int mid = (ok + ng) / 2;
			if(h[i].get(mid) == h[j].get(mid)) ok = mid;
			else ng = mid;
		}
		ans += ok;
	}
	cout << ans << endl;
}
0