結果
問題 | No.515 典型LCP |
ユーザー | rpy3cpp |
提出日時 | 2017-05-06 01:49:52 |
言語 | PyPy2 (7.3.15) |
結果 |
AC
|
実行時間 | 884 ms / 1,000 ms |
コード長 | 2,465 bytes |
コンパイル時間 | 2,011 ms |
コンパイル使用メモリ | 76,556 KB |
実行使用メモリ | 157,224 KB |
最終ジャッジ日時 | 2024-09-14 10:13:42 |
合計ジャッジ時間 | 8,944 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 884 ms
157,224 KB |
testcase_01 | AC | 785 ms
153,804 KB |
testcase_02 | AC | 328 ms
80,564 KB |
testcase_03 | AC | 76 ms
75,408 KB |
testcase_04 | AC | 73 ms
75,800 KB |
testcase_05 | AC | 236 ms
83,200 KB |
testcase_06 | AC | 253 ms
83,500 KB |
testcase_07 | AC | 241 ms
83,384 KB |
testcase_08 | AC | 312 ms
83,248 KB |
testcase_09 | AC | 242 ms
79,876 KB |
testcase_10 | AC | 272 ms
81,792 KB |
testcase_11 | AC | 282 ms
81,316 KB |
testcase_12 | AC | 278 ms
81,792 KB |
testcase_13 | AC | 254 ms
84,536 KB |
testcase_14 | AC | 170 ms
89,628 KB |
testcase_15 | AC | 262 ms
111,016 KB |
testcase_16 | AC | 286 ms
111,576 KB |
ソースコード
# -*- coding: utf-8 -*- class RMQ(object): def __init__(self, A): self._A = A self._preprocess() def _preprocess(self): n = len(self._A) max_j = n.bit_length() - 1 self._M = [range(n)] for j in range(0, max_j): shift = 1 << j Mj = self._M[j] Mjnext = [] for k1, k2 in zip(Mj, Mj[shift:]): k = k1 if self._A[k1] < self._A[k2] else k2 Mjnext.append(k) self._M.append(Mjnext) def query(self, i, j): if i == j: return i if i > j: i, j = j, i el = (j - i).bit_length() - 1 k1 = self._M[el][i] k2 = self._M[el][j - (1 << el) + 1] rmq = k1 if self._A[k1] < self._A[k2] else k2 return rmq class LCP(object): def __init__(self, strings): strings_with_index = [(s, i) for i, s in enumerate(strings)] strings_with_index.sort() sorted_strings = [] self._index_converter = [0] * len(strings) j = 0 for s, i in strings_with_index: sorted_strings.append(s) self._index_converter[i] = j j += 1 self._init_lcp_neighbours(sorted_strings) self._rmq = RMQ(self._lcp_neighbours) self._lens = list(map(len, sorted_strings)) def _init_lcp_neighbours(self, ss): n = len(ss) self._lcp_neighbours = [self._calc_lcp(ss[i], ss[i + 1]) for i in range(n - 1)] def _calc_lcp(self, str0, str1): lcp = 0 for c0, c1 in zip(str0, str1): if c0 != c1: return lcp else: lcp += 1 return lcp def get(self, i, j): ''' strings[i] と strings[j] の LCP の長さを返す ''' ii = self._index_converter[i] jj = self._index_converter[j] if ii == jj: return self._lens[ii] if ii > jj: ii, jj = jj, ii kk = self._rmq.query(ii, jj - 1) return self._lcp_neighbours[kk] if __name__ == '__main__': N = int(raw_input()) strings = [raw_input() for _ in range(N)] M, x, d = map(int, raw_input().split()) lcp = LCP(strings) Nm1 = N - 1 NN = N * (N - 1) cum = 0 for k in xrange(M): i, j = divmod(x, Nm1) if (i > j): i, j = j, i else: j += 1 cum += lcp.get(i, j) x = (x + d) % NN print(cum)