結果

問題 No.515 典型LCP
ユーザー rpy3cpprpy3cpp
提出日時 2017-05-06 02:20:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 897 ms / 1,000 ms
コード長 2,375 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 195,200 KB
最終ジャッジ日時 2024-09-14 10:19:26
合計ジャッジ時間 6,511 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 897 ms
175,536 KB
testcase_01 AC 800 ms
195,200 KB
testcase_02 AC 285 ms
77,924 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 178 ms
76,928 KB
testcase_06 AC 191 ms
77,312 KB
testcase_07 AC 180 ms
76,800 KB
testcase_08 AC 237 ms
76,544 KB
testcase_09 AC 190 ms
77,056 KB
testcase_10 AC 214 ms
78,116 KB
testcase_11 AC 219 ms
78,208 KB
testcase_12 AC 217 ms
78,208 KB
testcase_13 AC 188 ms
76,832 KB
testcase_14 AC 97 ms
77,064 KB
testcase_15 AC 166 ms
76,544 KB
testcase_16 AC 179 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = [list(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 self._A[i]
        el = (j - i).bit_length() - 1
        Ak1 = self._A[self._M[el][i]]
        Ak2 = self._A[self._M[el][j - (1 << el) + 1]]
        if Ak1 < Ak2:
            return Ak1
        else:
            return Ak2

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):
        ii = self._index_converter[i]
        jj = self._index_converter[j]
        if ii == jj:
            return self._lens[ii]
        elif ii > jj:
            return self._rmq.query(jj, ii - 1)
        else:
            return self._rmq.query(ii, jj - 1)

if __name__ == '__main__':
    N = int(input())
    strings = [input() for _ in range(N)]
    M, x, d = map(int, input().split())
    lcp = LCP(strings)
    Nm1 = N - 1
    NN = N * (N - 1)
    cum = 0
    for k in range(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)
0