結果

問題 No.2210 equence Squence Seuence
ユーザー flygonflygon
提出日時 2023-02-10 23:56:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 107,252 KB
最終ジャッジ日時 2024-07-07 17:42:57
合計ジャッジ時間 4,343 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,776 KB
testcase_01 AC 46 ms
54,460 KB
testcase_02 AC 44 ms
54,912 KB
testcase_03 AC 90 ms
85,912 KB
testcase_04 AC 88 ms
86,592 KB
testcase_05 AC 99 ms
95,360 KB
testcase_06 AC 95 ms
90,796 KB
testcase_07 AC 126 ms
100,020 KB
testcase_08 AC 44 ms
54,676 KB
testcase_09 AC 44 ms
55,172 KB
testcase_10 AC 45 ms
55,772 KB
testcase_11 AC 45 ms
55,252 KB
testcase_12 AC 45 ms
56,300 KB
testcase_13 AC 139 ms
107,040 KB
testcase_14 AC 141 ms
106,668 KB
testcase_15 AC 143 ms
107,092 KB
testcase_16 AC 140 ms
107,252 KB
testcase_17 AC 140 ms
106,704 KB
testcase_18 AC 44 ms
56,168 KB
testcase_19 AC 44 ms
56,252 KB
testcase_20 AC 44 ms
54,464 KB
testcase_21 AC 44 ms
54,712 KB
testcase_22 AC 45 ms
55,992 KB
testcase_23 AC 118 ms
101,696 KB
testcase_24 AC 103 ms
94,832 KB
testcase_25 AC 114 ms
100,548 KB
testcase_26 AC 128 ms
106,876 KB
testcase_27 AC 85 ms
88,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,k = map(int,input().split())
a = list(map(int,input().split()))

p = [-1]*(n+1)

q = deque([])
mx = n
mn = 1
for i in range(n-1):
  q.append(i)
  if a[i] < a[i+1]:
    while q:
      p[mx] = q.pop()
      mx -= 1
  if a[i] > a[i+1]:
    while q:
      p[mn] = q.popleft()
      mn += 1
q.append(n-1)
for i in range(1, n+1):
  if p[i] == -1:
    p[i] = q.pop()
ans = []
for i in range(n):
  if i == p[k]:continue
  ans.append(a[i])

print(*ans)
0