結果

問題 No.2454 Former < Latter
ユーザー chineristACchineristAC
提出日時 2023-09-01 23:54:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 79,800 KB
最終ジャッジ日時 2024-06-11 06:13:29
合計ジャッジ時間 3,202 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
56,064 KB
testcase_01 AC 45 ms
55,424 KB
testcase_02 AC 86 ms
79,616 KB
testcase_03 AC 72 ms
79,276 KB
testcase_04 AC 80 ms
79,800 KB
testcase_05 AC 77 ms
79,744 KB
testcase_06 AC 77 ms
79,508 KB
testcase_07 AC 80 ms
79,616 KB
testcase_08 AC 95 ms
77,440 KB
testcase_09 AC 79 ms
78,336 KB
testcase_10 AC 88 ms
78,472 KB
testcase_11 AC 78 ms
79,360 KB
testcase_12 AC 78 ms
79,488 KB
testcase_13 AC 77 ms
79,184 KB
testcase_14 AC 77 ms
79,248 KB
testcase_15 AC 82 ms
79,036 KB
testcase_16 AC 79 ms
79,320 KB
testcase_17 AC 165 ms
79,184 KB
testcase_18 AC 94 ms
77,296 KB
testcase_19 AC 73 ms
79,488 KB
testcase_20 AC 90 ms
79,528 KB
testcase_21 AC 102 ms
77,568 KB
testcase_22 AC 87 ms
78,432 KB
testcase_23 AC 85 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random
from itertools import permutations
from collections import deque
from heapq import *

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def Z_algorithm(s):
    N = len(s)
    Z_alg = [0]*N

    Z_alg[0] = N
    i = 1
    j = 0
    while i < N:
        while i+j < N and s[j] == s[i+j]:
            j += 1
        Z_alg[i] = j
        if j == 0:
            i += 1
            continue
        k = 1
        while i+k < N and k + Z_alg[k]<j:
            Z_alg[i+k] = Z_alg[k]
            k += 1
        i += k
        j -= k
    return Z_alg

for _ in range(int(input())):
    N = int(input())
    S = input()

    Z = Z_algorithm(S)

    ans = 0
    for i in range(1,N):
        if Z[i] == N - i or Z[i] >= i:
            if i < N-i:
                ans += 1
            continue
        if S[Z[i]] < S[Z[i]+i]:
            ans += 1
        else:
            assert S[Z[i]] > S[Z[i]+i]
    print(ans)
0