結果

問題 No.2454 Former < Latter
ユーザー ニックネームニックネーム
提出日時 2023-09-01 22:03:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,392 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,004 KB
最終ジャッジ日時 2024-06-11 03:49:58
合計ジャッジ時間 10,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 419 ms
18,912 KB
testcase_03 AC 353 ms
22,744 KB
testcase_04 AC 391 ms
13,660 KB
testcase_05 AC 374 ms
13,512 KB
testcase_06 AC 374 ms
13,528 KB
testcase_07 AC 434 ms
13,404 KB
testcase_08 AC 345 ms
10,880 KB
testcase_09 AC 255 ms
12,032 KB
testcase_10 AC 316 ms
11,856 KB
testcase_11 AC 419 ms
22,872 KB
testcase_12 AC 416 ms
23,004 KB
testcase_13 AC 440 ms
22,876 KB
testcase_14 AC 441 ms
23,000 KB
testcase_15 AC 352 ms
12,592 KB
testcase_16 AC 359 ms
12,408 KB
testcase_17 AC 1,392 ms
10,624 KB
testcase_18 AC 311 ms
10,752 KB
testcase_19 AC 361 ms
13,328 KB
testcase_20 AC 384 ms
13,528 KB
testcase_21 AC 362 ms
10,880 KB
testcase_22 AC 273 ms
12,032 KB
testcase_23 AC 276 ms
12,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def z_algorithm(s):
    if not s: return []
    n = len(s); z = [0]*n; z[0] = n; i = 1; j = 0
    while i<n:
        while i+j<n and s[j]==s[i+j]: j += 1
        if not j: i += 1; continue
        z[i] = j; k = 1
        while i+k<n and k+z[k]<j: z[i+k] = z[k]; k += 1
        i += k; j -= k
    return z
for _ in range(int(input())):
    n = int(input()); s = input()
    z = z_algorithm(s); ans = 0
    for i in range(1,n):
        v = min(z[i],i)
        if i+v!=n and (v==i or s[v]<s[i+v]): ans += 1
    print(ans)
0