結果

問題 No.1675 Strange Minimum Query
ユーザー lloyzlloyz
提出日時 2021-11-23 22:30:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 72,808 KB
最終ジャッジ日時 2024-06-25 20:12:49
合計ジャッジ時間 29,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 1,026 ms
61,836 KB
testcase_04 AC 856 ms
53,284 KB
testcase_05 AC 81 ms
14,336 KB
testcase_06 AC 1,229 ms
70,960 KB
testcase_07 AC 1,239 ms
72,212 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 594 ms
35,536 KB
testcase_11 AC 134 ms
15,232 KB
testcase_12 AC 644 ms
37,820 KB
testcase_13 AC 1,112 ms
64,256 KB
testcase_14 AC 1,108 ms
70,400 KB
testcase_15 WA -
testcase_16 AC 31 ms
10,752 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())
B = [list(map(int, input().split())) for _ in range(q)]

INF = 10**9
B.sort(key=lambda x: (x[0], x[1]))
A = [INF for _ in range(n)]
min_ind = -1
for i in range(q):
    l, r, b = B[i]
    l -= 1
    r -= 1
    if l != min_ind:
        min_ind = l
    else:
        if b > A[min_ind]:
            print(-1)
            exit()
        min_ind += 1
        if min_ind > r:
            print(-1)
            exit()
    A[min_ind] = b
print(*A)
0