結果

問題 No.2454 Former < Latter
ユーザー rlangevinrlangevin
提出日時 2023-09-01 23:24:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 87,544 KB
最終ジャッジ日時 2024-06-11 05:32:58
合計ジャッジ時間 3,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,828 KB
testcase_01 AC 32 ms
52,584 KB
testcase_02 AC 75 ms
87,288 KB
testcase_03 AC 65 ms
87,216 KB
testcase_04 AC 65 ms
85,812 KB
testcase_05 AC 64 ms
85,824 KB
testcase_06 AC 69 ms
87,544 KB
testcase_07 AC 71 ms
87,276 KB
testcase_08 AC 81 ms
76,632 KB
testcase_09 AC 70 ms
83,024 KB
testcase_10 AC 72 ms
80,920 KB
testcase_11 AC 69 ms
87,012 KB
testcase_12 AC 69 ms
87,192 KB
testcase_13 AC 68 ms
87,024 KB
testcase_14 AC 70 ms
87,140 KB
testcase_15 AC 75 ms
85,680 KB
testcase_16 AC 75 ms
85,948 KB
testcase_17 AC 156 ms
79,332 KB
testcase_18 AC 74 ms
76,436 KB
testcase_19 AC 61 ms
85,076 KB
testcase_20 AC 75 ms
87,288 KB
testcase_21 AC 87 ms
76,216 KB
testcase_22 AC 77 ms
81,212 KB
testcase_23 AC 79 ms
84,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def Z_algorithm(s):
    n = len(s)
    A = [n] + [0] * (n-1)
    i, j = 1, 0
    while i < n:
        while i + j < n and s[j] == s[i+j]:
            j += 1
        A[i] = j
        if j == 0:
            i += 1
            continue
        k = 1
        while i + k < n and k + A[k] < j:
            A[i+k] = A[k]
            k += 1
        i += k
        j -= k
    return A

T = int(input())
for _ in range(T):
    N = int(input())
    S = list(input().rstrip())
    S = [ord(s) - ord("a") for s in S]
    L = Z_algorithm(S)
    ans = 0
    for i in range(1, N):
        L[i] = min(i, L[i])
        if i == L[i] and 2 * i < N:
            ans += 1
        else:
            if i + L[i] <= N - 1:
                if S[L[i]] < S[i + L[i]]:
                    ans += 1
    print(ans)
            
            
        
0