結果

問題 No.1675 Strange Minimum Query
ユーザー H3PO4H3PO4
提出日時 2021-09-10 22:10:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 112,472 KB
最終ジャッジ日時 2024-06-12 00:29:59
合計ジャッジ時間 13,902 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 197 ms
85,432 KB
testcase_04 AC 205 ms
88,448 KB
testcase_05 WA -
testcase_06 AC 208 ms
86,256 KB
testcase_07 AC 247 ms
89,984 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 56 ms
65,536 KB
testcase_10 AC 161 ms
96,000 KB
testcase_11 AC 97 ms
85,888 KB
testcase_12 AC 166 ms
97,748 KB
testcase_13 AC 253 ms
107,992 KB
testcase_14 AC 198 ms
112,472 KB
testcase_15 AC 302 ms
108,256 KB
testcase_16 AC 38 ms
52,608 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq

input = sys.stdin.buffer.readline

N, Q = map(int, input().split())
MAX = 10 ** 9
h = []
queries = [[] for _ in range(N)]
for _ in range(Q):
    l, r, b = map(int, input().split())
    l -= 1
    r -= 1
    queries[l].append((-b, r))

ans = [MAX] * N
for i in range(N):
    for q in queries[i]:
        heapq.heappush(h, q)
    if h:
        bm, r = heapq.heappop(h)
        if r < i: print(-1); exit()
        ans[i] = -bm
if h: print(-1);exit()
print(*ans)
0