結果
問題 | No.1675 Strange Minimum Query |
ユーザー | H3PO4 |
提出日時 | 2021-09-10 22:57:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,410 bytes |
コンパイル時間 | 489 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 199,680 KB |
最終ジャッジ日時 | 2024-06-12 02:54:39 |
合計ジャッジ時間 | 14,335 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,352 KB |
testcase_01 | AC | 42 ms
53,120 KB |
testcase_02 | AC | 40 ms
52,608 KB |
testcase_03 | AC | 254 ms
112,768 KB |
testcase_04 | AC | 260 ms
109,496 KB |
testcase_05 | AC | 90 ms
84,992 KB |
testcase_06 | AC | 316 ms
120,832 KB |
testcase_07 | AC | 349 ms
124,032 KB |
testcase_08 | AC | 42 ms
53,760 KB |
testcase_09 | AC | 83 ms
75,408 KB |
testcase_10 | AC | 417 ms
113,216 KB |
testcase_11 | AC | 184 ms
88,984 KB |
testcase_12 | AC | 457 ms
117,816 KB |
testcase_13 | AC | 673 ms
180,088 KB |
testcase_14 | AC | 620 ms
199,680 KB |
testcase_15 | AC | 757 ms
188,800 KB |
testcase_16 | AC | 41 ms
52,992 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
import sys import heapq input = sys.stdin.buffer.readline class Set_min(set): def __init__(self, iterable=tuple()): super(Set_min, self).__init__(iterable) self.h = list(set(iterable)) heapq.heapify(self.h) def add(self, x): super(Set_min, self).add(x) heapq.heappush(self.h, x) def remove(self, x): super(Set_min, self).remove(x) def min(self): if not super(Set_min, self).__len__(): raise ValueError while self.h and self.h[0] not in self: heapq.heappop(self.h) return self.h[0] N, Q = map(int, input().split()) MAX = 10 ** 9 h = [] queries = [[] for _ in range(N + 1)] for i in range(Q): l, r, b = map(int, input().split()) l -= 1 queries[l].append((b, i, 1)) queries[r].append((b, i, 2)) ans = [MAX] * N st1 = Set_min() st2 = Set_min() for i in range(N): for b, j, f in queries[i]: if f == 1: st1.add((-b, j)) else: # assert f == 2 if (-b, j) in st1: print(-1) exit() else: st2.remove((-b, j)) if st1: q = st1.min() if st2 and -q[0] < -st2.min()[0]: continue st1.remove(q) ans[i] = -q[0] st2.add(q) for b, j, f in queries[N]: if (-b, j) in st1: print(-1) exit() print(*ans)