結果
問題 | No.1425 Yet Another Cyclic Shifts Sorting |
ユーザー | rlangevin |
提出日時 | 2023-10-04 12:52:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,167 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 160,368 KB |
最終ジャッジ日時 | 2024-07-26 14:43:46 |
合計ジャッジ時間 | 15,674 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
54,656 KB |
testcase_01 | AC | 49 ms
54,780 KB |
testcase_02 | AC | 47 ms
54,528 KB |
testcase_03 | AC | 49 ms
53,888 KB |
testcase_04 | AC | 44 ms
54,400 KB |
testcase_05 | AC | 47 ms
54,400 KB |
testcase_06 | WA | - |
testcase_07 | AC | 46 ms
54,784 KB |
testcase_08 | AC | 48 ms
54,016 KB |
testcase_09 | AC | 48 ms
54,272 KB |
testcase_10 | AC | 46 ms
54,272 KB |
testcase_11 | WA | - |
testcase_12 | AC | 49 ms
54,272 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 49 ms
54,016 KB |
testcase_16 | AC | 46 ms
54,400 KB |
testcase_17 | AC | 50 ms
54,272 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 327 ms
128,708 KB |
testcase_23 | AC | 164 ms
91,096 KB |
testcase_24 | AC | 159 ms
89,252 KB |
testcase_25 | AC | 345 ms
152,500 KB |
testcase_26 | AC | 392 ms
157,472 KB |
testcase_27 | AC | 520 ms
153,532 KB |
testcase_28 | AC | 468 ms
158,304 KB |
testcase_29 | AC | 302 ms
98,156 KB |
testcase_30 | AC | 241 ms
91,136 KB |
testcase_31 | AC | 453 ms
157,264 KB |
testcase_32 | AC | 270 ms
97,152 KB |
testcase_33 | AC | 173 ms
79,656 KB |
testcase_34 | AC | 317 ms
101,628 KB |
testcase_35 | AC | 453 ms
148,824 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | AC | 48 ms
54,272 KB |
ソースコード
from collections import * from heapq import * class QuasiBinaryTree: def __init__(self, rule="min"): if rule == "max": self.pm = -1 else: self.pm = 1 self.inf = 10**18 self.P = [self.inf] self.Q = [] def insert(self, x): heappush(self.P, x * self.pm) def erase(self, x): heappush(self.Q, x * self.pm) def top(self): while self.Q and (self.P[0] == self.Q[0]): heappop(self.P) heappop(self.Q) return self.P[0] * self.pm N = int(input()) A = list(map(int, input().split())) A.reverse() D = defaultdict(list) for i in range(N): D[A[i]].append(i) for k, v in D.items(): D[k].reverse() L = [] A.sort() for i in range(N - 1, -1, -1): L.append(D[A[i]].pop()) H = QuasiBinaryTree("min") H2 = QuasiBinaryTree("min") for i in range(N): H.insert(i) H2.insert(i) ans = 0 pre = -1 flag = 0 for i in range(N): if L[i] != pre + 1 and (L[i] != H.top() or flag): ans += 1 pre = L[i] if pre == H2.top(): flag = 1 else: flag = 0 H.erase(L[i]) H2.erase(L[i]) print(ans)