結果
問題 | No.2210 equence Squence Seuence |
ユーザー | タコイモ |
提出日時 | 2023-02-11 09:54:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,760 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 125,352 KB |
最終ジャッジ日時 | 2024-07-08 00:56:41 |
合計ジャッジ時間 | 12,741 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
55,424 KB |
testcase_01 | AC | 45 ms
55,168 KB |
testcase_02 | AC | 44 ms
55,552 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 447 ms
93,148 KB |
testcase_07 | AC | 1,015 ms
116,952 KB |
testcase_08 | WA | - |
testcase_09 | AC | 52 ms
62,464 KB |
testcase_10 | AC | 54 ms
64,256 KB |
testcase_11 | AC | 50 ms
61,824 KB |
testcase_12 | AC | 54 ms
64,640 KB |
testcase_13 | AC | 1,235 ms
123,800 KB |
testcase_14 | AC | 1,259 ms
125,220 KB |
testcase_15 | AC | 1,274 ms
125,352 KB |
testcase_16 | AC | 1,258 ms
123,672 KB |
testcase_17 | WA | - |
testcase_18 | AC | 45 ms
55,680 KB |
testcase_19 | AC | 44 ms
55,424 KB |
testcase_20 | WA | - |
testcase_21 | AC | 44 ms
55,936 KB |
testcase_22 | WA | - |
testcase_23 | AC | 346 ms
113,764 KB |
testcase_24 | AC | 278 ms
103,200 KB |
testcase_25 | AC | 320 ms
109,876 KB |
testcase_26 | AC | 402 ms
121,332 KB |
testcase_27 | AC | 169 ms
90,968 KB |
ソースコード
base = 37 #mod = 2305843009213693951 #2**61 - 1 制限時間に余裕があり衝突したらこっちを使う #これでTLEしたら #mod2 = 10**9 + 7とかで複数でチェック mod = 10**9 + 9 class RollingHash(): def __init__(self, s, base, mod): self.mod = mod l = len(s) self.pw = pw = [1]*(l+1) self.h = h = [0]*(l+1) v = 0 for i in range(l): #小文字のみ h[i+1] = v = (v * base + s[i]) % mod #大文字のみ or 大文字と小文字のみ #h[i+1] = v = (v * base + ord(s[i])-64) % mod #通常 #h[i+1] = v = (v * base + ord(s[i])) % mod v = 1 for i in range(l): pw[i+1] = v = v * base % mod #[l,r) def get(self, l, r): return (self.h[r] - self.h[l] * self.pw[r-l]) % self.mod import sys #sys.setrecursionlimit(500000) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def TI(): return tuple(map(int,sys.stdin.readline().rstrip().split())) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip()) #for i, pi in enumerate(p): from collections import defaultdict,deque import bisect import itertools dic = defaultdict(int) d = deque() N,K = MI() A = LI() S = RollingHash(A,base,mod) #https://aotamasaki.hatenablog.com/entry/meguru_bisect #arg桁 def is_ok(arg,x,y): if arg == 0: return True if arg == N: return False if arg <= x and arg <= y: return True if arg <= x: X = S.get(0,arg) else: X = (S.get(0,x)*S.pw[N-1-x]+S.get(x+1,arg+1))%mod if arg <= y: Y = S.get(0,arg) else: Y = (S.get(0,y)*S.pw[N-1-y]+S.get(y+1,arg+1))%mod if X == Y: return True else: return False def meguru_bisect(ng, ok,s,t): ''' 初期値のng,okを受け取り,is_okを満たす最小(最大)のokを返す まずis_okを定義すべし ng ok は とり得る最小の値-1 とり得る最大の値+1 最大最小が逆の場合はよしなにひっくり返す ''' while (abs(ok - ng) > 1): mid = (ok + ng) // 2 if is_ok(mid,s,t): ok = mid else: ng = mid return ok def cmp(x,y): h = meguru_bisect(N,0,x,y) if h == N-1: return 0 if x > h: f = A[h] else: f = A[h+1] if y > h: ff = A[h] else: ff = A[h+1] if f < ff: return -1 elif f == ff: return 0 else: return 1 D = list(range(N)) from functools import cmp_to_key p = sorted(D, key = cmp_to_key(cmp)) x = p[K - 1] ans = A[:x] + A[x + 1:] print(*ans)