結果
問題 | No.1675 Strange Minimum Query |
ユーザー | stng |
提出日時 | 2021-09-11 11:19:41 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 971 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 81,976 KB |
実行使用メモリ | 186,352 KB |
最終ジャッジ日時 | 2024-06-22 18:56:26 |
合計ジャッジ時間 | 44,546 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
55,020 KB |
testcase_01 | WA | - |
testcase_02 | AC | 42 ms
55,044 KB |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | WA | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | AC | 44 ms
56,988 KB |
testcase_09 | AC | 109 ms
76,808 KB |
testcase_10 | AC | 535 ms
101,816 KB |
testcase_11 | AC | 156 ms
82,348 KB |
testcase_12 | AC | 606 ms
104,520 KB |
testcase_13 | AC | 776 ms
137,940 KB |
testcase_14 | AC | 1,920 ms
186,352 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 42 ms
56,336 KB |
testcase_17 | AC | 661 ms
88,036 KB |
testcase_18 | AC | 817 ms
92,436 KB |
testcase_19 | AC | 1,467 ms
99,928 KB |
testcase_20 | AC | 1,820 ms
118,680 KB |
testcase_21 | AC | 1,918 ms
114,844 KB |
testcase_22 | TLE | - |
testcase_23 | AC | 1,609 ms
117,336 KB |
testcase_24 | AC | 1,751 ms
113,576 KB |
testcase_25 | AC | 1,204 ms
103,412 KB |
testcase_26 | AC | 912 ms
92,624 KB |
testcase_27 | AC | 1,924 ms
112,660 KB |
testcase_28 | AC | 1,203 ms
96,992 KB |
testcase_29 | AC | 1,119 ms
92,328 KB |
testcase_30 | AC | 989 ms
94,420 KB |
testcase_31 | AC | 1,949 ms
126,548 KB |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | AC | 1,722 ms
119,772 KB |
testcase_36 | AC | 1,751 ms
120,716 KB |
ソースコード
from collections import defaultdict import heapq n,q = map(int,input().split()) lr = [[int(i)-1 for i in input().split()] for j in range(q)] lr.sort(key=lambda x:x[0]) li = [10**9]*n rm = defaultdict(int) idx = 0 lrcnt = 0 hp = [] heapq.heapify(hp) rmhp = [] heapq.heapify(rmhp) while idx < n: while lrcnt < q and lr[lrcnt][0] <= idx: heapq.heappush(hp, -lr[lrcnt][2]) heapq.heappush(rmhp, [lr[lrcnt][1],-lr[lrcnt][2]]) lrcnt += 1 while 1: if len(rmhp) == 0: break pos,val = heapq.heappop(rmhp) if pos < idx: rm[val] += 1 else: heapq.heappush(rmhp, [pos,val]) break while 1: if len(hp) == 0: li[idx] = 10**9 break val = heapq.heappop(hp) if rm[val] > 0: rm[val] -= 1 else: li[idx] = -val+1 heapq.heappush(hp, val) break idx += 1 print(*li)