結果

問題 No.962 LCPs
ユーザー maspymaspy
提出日時 2020-03-18 21:45:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 51,480 KB
最終ジャッジ日時 2024-12-14 02:31:16
合計ジャッジ時間 11,319 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 33 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 553 ms
51,480 KB
testcase_18 AC 340 ms
35,864 KB
testcase_19 AC 332 ms
35,868 KB
testcase_20 AC 248 ms
27,504 KB
testcase_21 AC 251 ms
27,380 KB
testcase_22 AC 207 ms
23,260 KB
testcase_23 AC 208 ms
23,260 KB
testcase_24 AC 185 ms
20,760 KB
testcase_25 AC 184 ms
20,632 KB
testcase_26 AC 171 ms
18,936 KB
testcase_27 AC 224 ms
24,840 KB
testcase_28 AC 173 ms
19,432 KB
testcase_29 AC 159 ms
18,040 KB
testcase_30 AC 206 ms
22,724 KB
testcase_31 AC 245 ms
25,524 KB
testcase_32 AC 153 ms
17,444 KB
testcase_33 AC 323 ms
34,576 KB
testcase_34 AC 174 ms
19,604 KB
testcase_35 AC 170 ms
19,180 KB
testcase_36 AC 189 ms
20,548 KB
testcase_37 AC 121 ms
15,484 KB
testcase_38 AC 124 ms
15,476 KB
testcase_39 AC 122 ms
15,352 KB
testcase_40 AC 122 ms
15,480 KB
testcase_41 AC 119 ms
15,604 KB
testcase_42 AC 119 ms
15,480 KB
testcase_43 AC 120 ms
15,356 KB
testcase_44 AC 120 ms
15,604 KB
testcase_45 AC 122 ms
15,484 KB
testcase_46 AC 119 ms
15,352 KB
testcase_47 AC 32 ms
11,136 KB
testcase_48 AC 31 ms
11,008 KB
testcase_49 AC 31 ms
11,136 KB
testcase_50 AC 31 ms
11,136 KB
testcase_51 AC 31 ms
11,008 KB
testcase_52 AC 31 ms
11,008 KB
testcase_53 AC 33 ms
11,136 KB
testcase_54 AC 32 ms
11,008 KB
testcase_55 AC 31 ms
11,008 KB
testcase_56 AC 32 ms
11,136 KB
testcase_57 AC 77 ms
11,136 KB
testcase_58 AC 78 ms
11,008 KB
testcase_59 AC 77 ms
11,136 KB
testcase_60 AC 94 ms
11,136 KB
testcase_61 AC 97 ms
11,136 KB
testcase_62 AC 94 ms
11,136 KB
testcase_63 AC 357 ms
37,480 KB
testcase_64 AC 33 ms
11,008 KB
testcase_65 AC 361 ms
37,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from operator import itemgetter

N = int(readline())
S = read().split()

answer = 0
for word in S:
    answer += len(word)

LCP = [0] * (N - 1)
for i, (w1, w2) in enumerate(zip(S, S[1:])):
    L1 = len(w1)
    L2 = len(w2)
    j = 0
    while j < L1 and j < L2 and w1[j] == w2[j]:
        j += 1
    LCP[i] = j

INF = 10 ** 6
LCP.insert(0, -INF)
LCP.append(-INF)
values = sorted(enumerate(LCP), key=itemgetter(1), reverse=True)

left = list(range(1, N + 2))
right = list(range(-1, N))


for i, value in values[:-2]:
    l = left[i - 1]
    r = right[i + 1]
    left[r] = l
    right[l] = r
    cnt = (i - l + 1) * (r - i + 1)
    answer += value * cnt * (r - l + 4) // 2

print(answer)
0