結果

問題 No.2454 Former < Latter
ユーザー titiatitia
提出日時 2023-09-02 02:16:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-06-11 08:54:29
合計ジャッジ時間 10,895 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 524 ms
18,940 KB
testcase_03 AC 526 ms
22,780 KB
testcase_04 AC 462 ms
13,560 KB
testcase_05 AC 443 ms
13,408 KB
testcase_06 AC 492 ms
13,308 KB
testcase_07 AC 538 ms
13,436 KB
testcase_08 AC 380 ms
10,752 KB
testcase_09 AC 281 ms
12,160 KB
testcase_10 AC 352 ms
11,748 KB
testcase_11 AC 581 ms
22,780 KB
testcase_12 AC 560 ms
22,784 KB
testcase_13 AC 544 ms
22,780 KB
testcase_14 AC 632 ms
22,648 KB
testcase_15 AC 364 ms
12,752 KB
testcase_16 AC 367 ms
12,288 KB
testcase_17 AC 491 ms
11,008 KB
testcase_18 AC 301 ms
10,752 KB
testcase_19 AC 364 ms
13,432 KB
testcase_20 AC 455 ms
13,304 KB
testcase_21 AC 427 ms
10,880 KB
testcase_22 AC 300 ms
11,904 KB
testcase_23 AC 315 ms
12,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for tests in range(T):
    N=int(input())
    S=input().strip()

    # Z algorithm
    # https://snuke.hatenablog.com/entry/2014/12/03/214243

    LEN=len(S)
    i=1
    j=0
    A=[0]*LEN
    A[0]=LEN

    while i<LEN:
        while i+j<LEN and S[j]==S[i+j]:
            j+=1
        A[i]=j
        
        if j==0:
            i+=1
            continue
        
        k=1
        while i+k<LEN and k+A[k]<j:
            A[i+k]=A[k]
            k+=1
        i+=k
        j-=k

    #print(A)

    ANS=0

    for i in range(1,N):
        L=i
        R=N-i
        
        a=A[i]

        if a==R:
            if L<a:
                ANS+=1
            continue
        if a>=L:
            ANS+=1
            continue

        if S[a]<S[i+a]:
            ANS+=1

    print(ANS)

        
        
0