結果
問題 | No.2454 Former < Latter |
ユーザー |
![]() |
提出日時 | 2023-09-01 22:42:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,531 bytes |
コンパイル時間 | 579 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 80,000 KB |
最終ジャッジ日時 | 2025-01-03 10:12:18 |
合計ジャッジ時間 | 3,764 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 12 WA * 11 |
ソースコード
import sys# sys.setrecursionlimit(200005)# sys.set_int_max_str_digits(1000005)int1 = lambda x: int(x)-1pDB = 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+7md = 998244353def z_algorithm(target):len_t = len(target)lcp = [-1]*len_ttop = 1right = 0lcp[0] = 0while top < len_t:while top+right < len_t and target[right] == target[top+right]:right += 1lcp[top] = rightleft = 1if right == 0:top += 1continuewhile left+lcp[left] < right and left < right:lcp[top+left] = lcp[left]left += 1top += leftright -= leftreturn lcpdef solve():n=II()s=SI()lcp=z_algorithm(s)ans=0for i in range(1,n):l=lcp[i]r=lcp[i]+iif 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()