結果

問題 No.2454 Former < Latter
ユーザー ntudantuda
提出日時 2023-09-04 23:37:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 79,080 KB
最終ジャッジ日時 2024-06-22 20:51:48
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,744 KB
testcase_01 WA -
testcase_02 AC 74 ms
78,748 KB
testcase_03 AC 64 ms
78,080 KB
testcase_04 AC 66 ms
78,520 KB
testcase_05 AC 69 ms
78,464 KB
testcase_06 AC 67 ms
78,644 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 67 ms
77,404 KB
testcase_10 AC 78 ms
77,396 KB
testcase_11 AC 67 ms
78,084 KB
testcase_12 WA -
testcase_13 AC 67 ms
78,560 KB
testcase_14 AC 69 ms
78,292 KB
testcase_15 WA -
testcase_16 AC 70 ms
78,276 KB
testcase_17 AC 476 ms
77,568 KB
testcase_18 WA -
testcase_19 AC 69 ms
78,592 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 80 ms
78,040 KB
testcase_23 AC 79 ms
77,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def z_algo(S):
    N = len(S)
    A = [0] * N
    i = 1;
    j = 0
    A[0] = l = len(S)
    while i < l:
        while i + j < l and S[j] == S[i + j]:
            j += 1
        if not j:
            i += 1
            continue
        A[i] = j
        k = 1
        while l - i > k < j - A[k]:
            A[i + k] = A[k]
            k += 1
        i += k;
        j -= k
    return A

T = int(input())
for _ in range(T):
    N = int(input())
    S = input()
    A = z_algo(S)
    ans = 0
    for i in range(1, N):
        j = A[i]
        if i < j:
            ans += 1
        elif i + j < N:
            if S[j] < S[i + j]:
                ans += 1
    print(ans)
0