結果
問題 | No.1675 Strange Minimum Query |
ユーザー | H20 |
提出日時 | 2021-09-10 22:32:42 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 533 bytes |
コンパイル時間 | 562 ms |
コンパイル使用メモリ | 82,192 KB |
実行使用メモリ | 123,984 KB |
最終ジャッジ日時 | 2024-06-12 01:25:49 |
合計ジャッジ時間 | 11,048 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,472 KB |
testcase_01 | AC | 37 ms
51,968 KB |
testcase_02 | AC | 37 ms
52,280 KB |
testcase_03 | AC | 795 ms
111,092 KB |
testcase_04 | AC | 659 ms
98,764 KB |
testcase_05 | AC | 95 ms
77,952 KB |
testcase_06 | AC | 969 ms
115,816 KB |
testcase_07 | AC | 1,056 ms
123,984 KB |
testcase_08 | AC | 38 ms
52,224 KB |
testcase_09 | AC | 59 ms
65,920 KB |
testcase_10 | AC | 315 ms
93,440 KB |
testcase_11 | AC | 108 ms
81,012 KB |
testcase_12 | AC | 343 ms
93,436 KB |
testcase_13 | AC | 322 ms
114,720 KB |
testcase_14 | AC | 321 ms
116,816 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
N,Q = map(int, input().split()) L = [] inf = 10**9 for _ in range(Q): l,r,b=map(int, input().split()) L.append([l-1,r-1,b]) L = sorted(L, key=lambda x: x[2]) L = sorted(L, key=lambda x: x[0]) L = sorted(L, key=lambda x: x[1]) ANS = [inf]*N for l in L: l,r,b = l[0],l[1],l[2] for i in range(l,r+1): if ANS[i]==b: break if ANS[i]<b: print(-1) exit() if ANS[i]==inf: ANS[i]=b break else: print(-1) exit() print(*ANS)