結果

問題 No.1675 Strange Minimum Query
ユーザー H20H20
提出日時 2021-09-10 22:24:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 123,860 KB
最終ジャッジ日時 2024-06-12 01:03:14
合計ジャッジ時間 17,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 790 ms
111,224 KB
testcase_04 AC 654 ms
99,284 KB
testcase_05 AC 103 ms
77,568 KB
testcase_06 AC 942 ms
115,940 KB
testcase_07 AC 1,015 ms
123,860 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 65 ms
65,792 KB
testcase_10 AC 378 ms
93,952 KB
testcase_11 AC 119 ms
80,640 KB
testcase_12 AC 411 ms
93,324 KB
testcase_13 AC 335 ms
114,340 KB
testcase_14 AC 332 ms
116,748 KB
testcase_15 WA -
testcase_16 AC 38 ms
52,096 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 #

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[1])
L = sorted(L, key=lambda x: x[2])
L = sorted(L, key=lambda x: x[0])
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)
0