結果

問題 No.515 典型LCP
ユーザー fine
提出日時 2017-05-06 01:30:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 663 bytes
コンパイル時間 1,555 ms
コンパイル使用メモリ 171,916 KB
実行使用メモリ 11,168 KB
最終ジャッジ日時 2024-09-14 10:05:19
合計ジャッジ時間 9,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 10 TLE * 2 -- * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int, int> P;

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	ll n, m, x, d;
	cin >> n;
	vector<string> s(n);
	for (int i = 0; i < n; i++) cin >> s[i];
	cin >> m >> x >> d;
	map<P, int> memo;
	long long ans = 0;
	for (int k = 0; k < m; k++) {
		int i = x / (n - 1);
		int j = x % (n - 1);
		if (i > j) swap(j, i);
		else j++;
		int lmin = min(s[i].length(), s[j].length());
		int tmp = lmin;
		for (int h = 0; h < lmin; h++) {
			if (s[i][h] != s[j][h]) {
				tmp = h;
				break;
			}
		}
		ans += tmp;
		x = (x + d) % (n * (n - 1));
	}
	cout << ans << endl;
	return 0;
}
0