結果
問題 | No.2454 Former < Latter |
ユーザー | mkawa2 |
提出日時 | 2023-09-01 22:42:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,531 bytes |
コンパイル時間 | 829 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 79,820 KB |
最終ジャッジ日時 | 2024-06-11 04:41:11 |
合計ジャッジ時間 | 3,647 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,480 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 66 ms
78,208 KB |
testcase_04 | AC | 67 ms
78,208 KB |
testcase_05 | AC | 67 ms
78,336 KB |
testcase_06 | AC | 69 ms
78,344 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 68 ms
76,380 KB |
testcase_10 | AC | 79 ms
77,440 KB |
testcase_11 | AC | 70 ms
78,156 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 69 ms
78,336 KB |
testcase_15 | WA | - |
testcase_16 | AC | 65 ms
77,488 KB |
testcase_17 | AC | 171 ms
79,820 KB |
testcase_18 | WA | - |
testcase_19 | AC | 65 ms
78,072 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 77 ms
76,808 KB |
testcase_23 | WA | - |
ソースコード
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()