結果

問題 No.2454 Former < Latter
ユーザー mkawa2mkawa2
提出日時 2023-09-01 22:42:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,531 bytes
コンパイル時間 1,145 ms
コンパイル使用メモリ 87,056 KB
実行使用メモリ 81,588 KB
最終ジャッジ日時 2023-09-01 22:42:19
合計ジャッジ時間 4,394 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,376 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 95 ms
79,508 KB
testcase_04 AC 101 ms
79,596 KB
testcase_05 AC 97 ms
79,688 KB
testcase_06 AC 98 ms
79,512 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 97 ms
77,620 KB
testcase_10 AC 107 ms
78,576 KB
testcase_11 AC 98 ms
79,292 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 101 ms
79,596 KB
testcase_15 WA -
testcase_16 AC 98 ms
79,004 KB
testcase_17 AC 215 ms
81,588 KB
testcase_18 WA -
testcase_19 AC 95 ms
79,600 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 105 ms
78,532 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(1000005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

def z_algorithm(target):
    len_t = len(target)
    lcp = [-1]*len_t
    top = 1
    right = 0
    lcp[0] = 0
    while top < len_t:
        while top+right < len_t and target[right] == target[top+right]:
            right += 1
        lcp[top] = right
        left = 1
        if right == 0:
            top += 1
            continue
        while left+lcp[left] < right and left < right:
            lcp[top+left] = lcp[left]
            left += 1
        top += left
        right -= left
    return lcp

def solve():
    n=II()
    s=SI()
    lcp=z_algorithm(s)
    ans=0
    for i in range(1,n):
        l=lcp[i]
        r=lcp[i]+i
        if l>=i or r>=n:
            ans+=min(l,i)<min(l,n-i)
        else:
            ans+=s[l]<s[r]
    print(ans)

for _ in range(II()):solve()
0