結果

問題 No.2220 Range Insert & Point Mex
ユーザー titiatitia
提出日時 2023-02-18 01:04:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 555 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,704 KB
最終ジャッジ日時 2024-07-21 12:57:52
合計ジャッジ時間 16,965 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,024 KB
testcase_01 AC 31 ms
11,392 KB
testcase_02 AC 28 ms
11,520 KB
testcase_03 AC 28 ms
11,392 KB
testcase_04 AC 26 ms
11,392 KB
testcase_05 AC 27 ms
11,392 KB
testcase_06 AC 28 ms
11,392 KB
testcase_07 AC 26 ms
11,520 KB
testcase_08 AC 26 ms
11,392 KB
testcase_09 AC 28 ms
11,520 KB
testcase_10 AC 27 ms
11,520 KB
testcase_11 AC 28 ms
11,392 KB
testcase_12 AC 28 ms
11,392 KB
testcase_13 AC 680 ms
44,032 KB
testcase_14 AC 679 ms
43,908 KB
testcase_15 AC 685 ms
43,916 KB
testcase_16 AC 685 ms
43,644 KB
testcase_17 AC 677 ms
44,164 KB
testcase_18 AC 681 ms
44,100 KB
testcase_19 AC 685 ms
44,036 KB
testcase_20 AC 322 ms
22,768 KB
testcase_21 AC 311 ms
22,772 KB
testcase_22 AC 311 ms
22,712 KB
testcase_23 AC 478 ms
46,588 KB
testcase_24 AC 407 ms
40,816 KB
testcase_25 AC 329 ms
35,064 KB
testcase_26 AC 468 ms
42,764 KB
testcase_27 AC 319 ms
31,644 KB
testcase_28 AC 171 ms
22,976 KB
testcase_29 AC 173 ms
22,436 KB
testcase_30 AC 167 ms
22,708 KB
testcase_31 AC 429 ms
39,664 KB
testcase_32 AC 371 ms
35,996 KB
testcase_33 AC 362 ms
35,980 KB
testcase_34 AC 524 ms
36,224 KB
testcase_35 AC 543 ms
36,436 KB
testcase_36 AC 542 ms
36,412 KB
testcase_37 AC 536 ms
36,244 KB
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
Queries=[]

for i in range(N):
    l,r,a=map(int,input().split())

    if a>10**5+4:
        continue

    Queries.append((l,a,1))
    Queries.append((r+1,a,0))

Q=int(input())
X=list(map(int,input().split()))

for x in X:
    Queries.append((x,1<<60,1<<60))

Queries.sort()

NOW=0
C=[0]*(10**5+5)

for x,a,c in Queries:
    if c==1:
        C[a]+=1
        while C[NOW]!=0:
            NOW+=1
    elif c==0:
        C[a]-=1
        if C[a]==0 and a<NOW:
            NOW=a
    else:
        print(NOW)
0