結果

問題 No.515 典型LCP
ユーザー femtofemto
提出日時 2017-05-05 23:34:14
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 837 ms / 1,000 ms
コード長 1,305 bytes
コンパイル時間 1,628 ms
コンパイル使用メモリ 172,328 KB
実行使用メモリ 28,108 KB
最終ジャッジ日時 2023-10-12 10:23:28
合計ジャッジ時間 10,796 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 824 ms
28,108 KB
testcase_01 AC 736 ms
27,956 KB
testcase_02 AC 837 ms
19,688 KB
testcase_03 AC 4 ms
6,260 KB
testcase_04 AC 4 ms
6,312 KB
testcase_05 AC 504 ms
19,912 KB
testcase_06 AC 524 ms
19,908 KB
testcase_07 AC 491 ms
19,888 KB
testcase_08 AC 516 ms
19,796 KB
testcase_09 AC 710 ms
19,940 KB
testcase_10 AC 206 ms
19,784 KB
testcase_11 AC 186 ms
19,620 KB
testcase_12 AC 185 ms
19,684 KB
testcase_13 AC 528 ms
19,840 KB
testcase_14 AC 19 ms
19,848 KB
testcase_15 AC 549 ms
19,584 KB
testcase_16 AC 635 ms
19,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct RollingHash {
	int n;
	const unsigned P = 1000000007U;
	vector<unsigned long long> pow, phash;
	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]; }
};

string s[100000];

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

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

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