結果

問題 No.962 LCPs
ユーザー polylogKpolylogK
提出日時 2019-12-22 12:15:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,119 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-09-14 02:58:36
合計ジャッジ時間 16,092 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 36 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 33 ms
10,752 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 1,119 ms
21,632 KB
testcase_18 AC 614 ms
20,992 KB
testcase_19 AC 618 ms
20,992 KB
testcase_20 AC 451 ms
17,408 KB
testcase_21 AC 451 ms
17,536 KB
testcase_22 AC 354 ms
15,872 KB
testcase_23 AC 353 ms
16,000 KB
testcase_24 AC 316 ms
14,720 KB
testcase_25 AC 306 ms
14,720 KB
testcase_26 AC 273 ms
14,208 KB
testcase_27 AC 407 ms
16,384 KB
testcase_28 AC 294 ms
14,592 KB
testcase_29 AC 260 ms
13,696 KB
testcase_30 AC 363 ms
15,488 KB
testcase_31 AC 455 ms
15,872 KB
testcase_32 AC 240 ms
13,568 KB
testcase_33 AC 614 ms
20,480 KB
testcase_34 AC 294 ms
14,592 KB
testcase_35 AC 308 ms
14,080 KB
testcase_36 AC 327 ms
14,592 KB
testcase_37 AC 214 ms
12,672 KB
testcase_38 AC 208 ms
12,928 KB
testcase_39 AC 214 ms
12,672 KB
testcase_40 AC 210 ms
12,800 KB
testcase_41 AC 209 ms
12,928 KB
testcase_42 AC 211 ms
12,672 KB
testcase_43 AC 209 ms
12,672 KB
testcase_44 AC 214 ms
12,928 KB
testcase_45 AC 212 ms
12,928 KB
testcase_46 AC 211 ms
12,672 KB
testcase_47 AC 31 ms
11,008 KB
testcase_48 AC 31 ms
11,008 KB
testcase_49 AC 31 ms
10,880 KB
testcase_50 AC 31 ms
11,008 KB
testcase_51 AC 31 ms
11,136 KB
testcase_52 AC 30 ms
11,008 KB
testcase_53 AC 30 ms
11,008 KB
testcase_54 AC 30 ms
10,880 KB
testcase_55 AC 31 ms
10,752 KB
testcase_56 AC 31 ms
10,880 KB
testcase_57 AC 214 ms
10,880 KB
testcase_58 AC 216 ms
10,752 KB
testcase_59 AC 218 ms
10,880 KB
testcase_60 AC 102 ms
10,880 KB
testcase_61 AC 102 ms
10,880 KB
testcase_62 AC 102 ms
10,880 KB
testcase_63 AC 603 ms
17,920 KB
testcase_64 AC 31 ms
11,008 KB
testcase_65 AC 591 ms
17,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python

if __name__ == '__main__':
	N = int(input())
	S = [input() for i in range(N)]

	a = [0 for i in range(N - 1)]
	for i in range(N - 1):
		tmp = min(len(S[i]), len(S[i + 1]))
		for j in range(tmp):
			if S[i][j] != S[i + 1][j]:
				break

			a[i] = j + 1

	ans = 0
	for s in S:
		ans += len(s)
	
	nxt = [len(a) for i in range(len(a))]
	for i in range(len(a) - 1, -1, -1):
		now = i + 1
		while now < len(a):
			if a[now] < a[i]:
				break

			now = nxt[now]
		nxt[i] = now

	for i in range(len(a)):
		now = i
		while now < len(a) and a[now] > 0:
			S, T = now - i + 2, nxt[now] - i + 1
			L = (S + T) * (T - S + 1) // 2

			ans += L * a[now]
			now = nxt[now]

	print(ans)
0