結果

問題 No.1675 Strange Minimum Query
ユーザー stngstng
提出日時 2021-09-11 19:19:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 523 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 293,824 KB
最終ジャッジ日時 2024-06-23 03:47:01
合計ジャッジ時間 8,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,344 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 379 ms
98,196 KB
testcase_04 AC 405 ms
152,884 KB
testcase_05 AC 150 ms
124,032 KB
testcase_06 AC 437 ms
100,352 KB
testcase_07 AC 491 ms
128,896 KB
testcase_08 AC 37 ms
52,608 KB
testcase_09 AC 67 ms
71,296 KB
testcase_10 AC 312 ms
108,160 KB
testcase_11 AC 135 ms
98,520 KB
testcase_12 AC 346 ms
108,460 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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[2], reverse=True)

li = [10**9]*n
s = set(i for i in range(n))
sm = set()

for i in range(q):
    l,r,b = lr[i]
    if i > 0 and lr[i-1][2] != b:
        sm = set()
    a = set(l+i for i in range(r-l+1))
    f = False
    for i in a&s:
        f = True
        li[i] = b+1
        s.remove(i)
        sm.add(i)
    if f == False:
        if not sm&a:
            print(-1)
            exit()
    
print(*li)
0