結果

問題 No.2220 Range Insert & Point Mex
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-17 22:47:21
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 819 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 122,604 KB
最終ジャッジ日時 2024-07-21 12:50:31
合計ジャッジ時間 16,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
61,712 KB
testcase_01 AC 33 ms
53,368 KB
testcase_02 AC 33 ms
53,760 KB
testcase_03 AC 35 ms
54,588 KB
testcase_04 AC 33 ms
54,336 KB
testcase_05 AC 36 ms
54,268 KB
testcase_06 AC 34 ms
54,576 KB
testcase_07 AC 33 ms
55,320 KB
testcase_08 AC 35 ms
53,712 KB
testcase_09 AC 33 ms
53,856 KB
testcase_10 AC 35 ms
53,820 KB
testcase_11 AC 33 ms
54,064 KB
testcase_12 AC 35 ms
54,260 KB
testcase_13 AC 761 ms
119,748 KB
testcase_14 AC 744 ms
119,996 KB
testcase_15 AC 748 ms
119,752 KB
testcase_16 AC 757 ms
119,716 KB
testcase_17 AC 745 ms
120,000 KB
testcase_18 AC 736 ms
119,960 KB
testcase_19 AC 733 ms
119,752 KB
testcase_20 AC 181 ms
107,116 KB
testcase_21 AC 193 ms
107,112 KB
testcase_22 AC 185 ms
107,188 KB
testcase_23 AC 339 ms
118,096 KB
testcase_24 AC 326 ms
115,816 KB
testcase_25 AC 213 ms
100,736 KB
testcase_26 AC 341 ms
117,108 KB
testcase_27 AC 311 ms
110,688 KB
testcase_28 AC 76 ms
96,928 KB
testcase_29 AC 78 ms
97,992 KB
testcase_30 AC 78 ms
97,820 KB
testcase_31 AC 328 ms
116,068 KB
testcase_32 AC 268 ms
108,428 KB
testcase_33 AC 225 ms
108,612 KB
testcase_34 AC 494 ms
109,408 KB
testcase_35 AC 498 ms
109,968 KB
testcase_36 AC 521 ms
110,836 KB
testcase_37 AC 504 ms
110,444 KB
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
LRA = [list(map(int,input().split())) for i in range(n)]

q = int(input())
X = list(map(int,input().split()))
M = 10**5+5
event = []
for l,r,a in LRA:
    if a >= M:
        continue
    event.append([l,a,0])
    event.append([r+1,a,1])

ans = []
event.sort()
mex = [0]*(10**5+5)
now = 0
mexnum = 0
le = len(event)
for x in X:
    # print(x)
    while now < le and event[now][0] <= x:
        _,a,t = event[now]
        now += 1
        if t == 0:
            mex[a] += 1
            if mexnum == a:
                while mex[mexnum]:
                    mexnum += 1
        else:
            mex[a] -= 1
            if mex[a] == 0 and mexnum > a:
                mexnum = a
    #     print(_,a,t,mexnum)
    #     print(mex[:10])
    # print(x,mexnum)
    ans.append(mexnum)
for i in ans:
    print(i)
0