結果

問題 No.2210 equence Squence Seuence
ユーザー ShirotsumeShirotsume
提出日時 2023-02-05 19:31:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,101 ms / 2,000 ms
コード長 1,956 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 134,692 KB
最終ジャッジ日時 2024-07-04 06:39:57
合計ジャッジ時間 11,740 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
62,904 KB
testcase_01 AC 49 ms
62,688 KB
testcase_02 AC 49 ms
63,340 KB
testcase_03 AC 301 ms
89,248 KB
testcase_04 AC 324 ms
91,136 KB
testcase_05 AC 437 ms
95,896 KB
testcase_06 AC 411 ms
93,112 KB
testcase_07 AC 916 ms
116,376 KB
testcase_08 AC 49 ms
63,372 KB
testcase_09 AC 56 ms
66,480 KB
testcase_10 AC 54 ms
66,416 KB
testcase_11 AC 54 ms
66,396 KB
testcase_12 AC 59 ms
68,828 KB
testcase_13 AC 1,084 ms
133,036 KB
testcase_14 AC 1,074 ms
134,056 KB
testcase_15 AC 1,072 ms
134,692 KB
testcase_16 AC 1,101 ms
133,156 KB
testcase_17 AC 1,065 ms
133,416 KB
testcase_18 AC 47 ms
62,208 KB
testcase_19 AC 47 ms
61,696 KB
testcase_20 AC 48 ms
61,824 KB
testcase_21 AC 49 ms
62,720 KB
testcase_22 AC 48 ms
62,208 KB
testcase_23 AC 297 ms
114,360 KB
testcase_24 AC 243 ms
104,904 KB
testcase_25 AC 271 ms
110,072 KB
testcase_26 AC 348 ms
129,976 KB
testcase_27 AC 158 ms
90,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
from functools import cmp_to_key
class Rollinghash:
    def __init__(self, string, base, mod):
        n = len(string)
        self.__base = base
        self.__mod = mod
        self.__hash = [0]*(n + 1)
        self.__pow = [1]*(n + 1)
        if isinstance(string, str):
            for i, c in enumerate(string):
                o = ord(c) - ord('a') + 1
                self.__hash[i + 1] = (self.__hash[i] * self.__base + o) % self.__mod
                self.__pow[i + 1] = self.__pow[i] * self.__base % self.__mod
        else:
            for i, c in enumerate(string):
                o = c
                self.__hash[i + 1] = (self.__hash[i] * self.__base + o) % self.__mod
                self.__pow[i + 1] = self.__pow[i] * self.__base % self.__mod
        self.pow = self.__pow


   
    def query(self, l, r):
        ret = (self.__hash[r] - self.__hash[l] * self.__pow[r - l]) % self.__mod
        return ret
    def same(self, l1, r1, l2, r2):
        return self.query(l1, r1) == self.query(l2, r2)
import random
n, k = mi()
a = li()
base = random.randint(1, 998244352)
S = Rollinghash(a, base, mod)

def calchash(i, r):
    if r < i:
        return S.query(0,r)
    else:
        return (S.query(0, i) * S.pow[r - i] + S.query(i + 1,r + 1)) % mod

def ele(i, x):
    if x < i:
        return a[x]
    else:
        return a[x + 1]
def cmp(x, y):
    ng = n - 1
    ok = 0
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if calchash(x, mid) == calchash(y, mid):
            ok = mid
        else:
            ng = mid
    
    if ele(x, ok) < ele(y, ok):
        return -1
    else:
        return 1

p = sorted(list(range(n)), key = cmp_to_key(cmp))
x = p[k - 1]

ans = a[:x] + a[x + 1:]

print(*ans)
0