結果

問題 No.2422 regisys?
ユーザー gr1msl3ygr1msl3y
提出日時 2023-08-16 16:03:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 796 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 132,768 KB
最終ジャッジ日時 2024-11-25 05:47:44
合計ジャッジ時間 18,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,980 KB
testcase_01 AC 41 ms
54,808 KB
testcase_02 AC 40 ms
53,604 KB
testcase_03 AC 41 ms
53,936 KB
testcase_04 AC 40 ms
53,972 KB
testcase_05 AC 41 ms
55,356 KB
testcase_06 AC 43 ms
54,356 KB
testcase_07 AC 41 ms
55,056 KB
testcase_08 AC 42 ms
55,492 KB
testcase_09 AC 40 ms
54,244 KB
testcase_10 AC 42 ms
54,004 KB
testcase_11 AC 41 ms
53,332 KB
testcase_12 AC 39 ms
53,244 KB
testcase_13 AC 42 ms
54,256 KB
testcase_14 AC 40 ms
53,820 KB
testcase_15 AC 41 ms
53,936 KB
testcase_16 AC 42 ms
54,328 KB
testcase_17 AC 42 ms
54,248 KB
testcase_18 AC 41 ms
53,532 KB
testcase_19 AC 43 ms
55,628 KB
testcase_20 AC 43 ms
54,264 KB
testcase_21 AC 43 ms
54,168 KB
testcase_22 AC 42 ms
54,408 KB
testcase_23 AC 44 ms
54,248 KB
testcase_24 AC 41 ms
54,400 KB
testcase_25 AC 41 ms
53,404 KB
testcase_26 AC 41 ms
53,084 KB
testcase_27 AC 41 ms
53,484 KB
testcase_28 AC 41 ms
53,764 KB
testcase_29 AC 41 ms
53,928 KB
testcase_30 AC 41 ms
53,088 KB
testcase_31 AC 337 ms
96,124 KB
testcase_32 AC 348 ms
92,208 KB
testcase_33 AC 331 ms
95,652 KB
testcase_34 AC 202 ms
81,320 KB
testcase_35 AC 357 ms
97,540 KB
testcase_36 AC 272 ms
87,148 KB
testcase_37 AC 386 ms
97,536 KB
testcase_38 AC 251 ms
84,100 KB
testcase_39 AC 203 ms
80,716 KB
testcase_40 AC 261 ms
87,108 KB
testcase_41 AC 229 ms
82,892 KB
testcase_42 AC 542 ms
107,420 KB
testcase_43 AC 308 ms
91,576 KB
testcase_44 AC 615 ms
110,332 KB
testcase_45 AC 499 ms
101,852 KB
testcase_46 AC 626 ms
113,416 KB
testcase_47 AC 438 ms
97,052 KB
testcase_48 AC 594 ms
132,408 KB
testcase_49 AC 504 ms
97,880 KB
testcase_50 AC 514 ms
132,608 KB
testcase_51 AC 649 ms
116,256 KB
testcase_52 AC 306 ms
98,556 KB
testcase_53 AC 573 ms
107,508 KB
testcase_54 AC 562 ms
132,768 KB
testcase_55 AC 491 ms
108,612 KB
testcase_56 AC 369 ms
98,348 KB
testcase_57 AC 784 ms
132,148 KB
testcase_58 AC 791 ms
132,332 KB
testcase_59 AC 793 ms
132,272 KB
testcase_60 AC 796 ms
132,160 KB
testcase_61 AC 40 ms
53,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq as hq
N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
task = [[] for _ in range(2)]
for _ in range(M):
    t, v = map(int, input().split())
    task[t].append(v)

for i in range(2):
    task[i].sort()

state = []
seen = [0]*N
Aind = sorted(list(range(N)), key=lambda x: A[x])
ind = 0
for v in task[0]:
    while ind < N and v >= A[Aind[ind]]:
        hq.heappush(state, [-B[Aind[ind]], Aind[ind]])
        ind += 1
    if state:
        w, t = hq.heappop(state)
        seen[t] = 1

ans = N-sum(seen)
Bval = [B[i] for i in range(N) if not seen[i]]
Bval.sort()
ind = 0
for i, v in enumerate(task[1]):
    if Bval and v >= Bval[0]:
        hq.heappop(Bval)
        ans -= 1

print(ans)
0