結果

問題 No.2210 equence Squence Seuence
ユーザー ShirotsumeShirotsume
提出日時 2023-02-05 18:59:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,118 ms / 2,000 ms
コード長 2,054 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 136,040 KB
最終ジャッジ日時 2024-07-04 06:30:50
合計ジャッジ時間 12,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,568 KB
testcase_01 AC 49 ms
61,952 KB
testcase_02 AC 46 ms
62,336 KB
testcase_03 AC 337 ms
89,600 KB
testcase_04 AC 318 ms
90,580 KB
testcase_05 AC 436 ms
95,560 KB
testcase_06 AC 408 ms
93,536 KB
testcase_07 AC 908 ms
116,752 KB
testcase_08 AC 46 ms
62,080 KB
testcase_09 AC 53 ms
67,328 KB
testcase_10 AC 54 ms
67,968 KB
testcase_11 AC 53 ms
66,432 KB
testcase_12 AC 58 ms
68,864 KB
testcase_13 AC 1,049 ms
136,040 KB
testcase_14 AC 1,118 ms
135,268 KB
testcase_15 AC 1,027 ms
135,396 KB
testcase_16 AC 1,076 ms
133,912 KB
testcase_17 AC 1,051 ms
133,556 KB
testcase_18 AC 46 ms
61,952 KB
testcase_19 AC 45 ms
61,696 KB
testcase_20 AC 46 ms
62,080 KB
testcase_21 AC 47 ms
62,336 KB
testcase_22 AC 48 ms
62,336 KB
testcase_23 AC 194 ms
113,096 KB
testcase_24 AC 166 ms
104,832 KB
testcase_25 AC 184 ms
110,180 KB
testcase_26 AC 223 ms
129,984 KB
testcase_27 AC 107 ms
90,868 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):
    if x == y:
        return 0
    if calchash(x, n - 1) == calchash(y, n - 1):
        return 0
    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