結果

問題 No.2422 regisys?
ユーザー FromBooskaFromBooska
提出日時 2023-08-20 20:24:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 639 ms / 2,000 ms
コード長 1,447 bytes
コンパイル時間 1,051 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 150,112 KB
最終ジャッジ日時 2024-05-08 02:51:27
合計ジャッジ時間 18,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 43 ms
52,608 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 49 ms
53,376 KB
testcase_06 AC 51 ms
53,632 KB
testcase_07 AC 45 ms
52,864 KB
testcase_08 AC 44 ms
53,248 KB
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 40 ms
53,376 KB
testcase_12 AC 37 ms
52,608 KB
testcase_13 AC 42 ms
53,504 KB
testcase_14 AC 40 ms
52,992 KB
testcase_15 AC 49 ms
53,120 KB
testcase_16 AC 42 ms
53,120 KB
testcase_17 AC 42 ms
52,864 KB
testcase_18 AC 42 ms
52,992 KB
testcase_19 AC 44 ms
53,504 KB
testcase_20 AC 43 ms
53,248 KB
testcase_21 AC 42 ms
53,248 KB
testcase_22 AC 40 ms
52,992 KB
testcase_23 AC 43 ms
53,248 KB
testcase_24 AC 41 ms
52,864 KB
testcase_25 AC 40 ms
52,736 KB
testcase_26 AC 39 ms
52,480 KB
testcase_27 AC 41 ms
52,736 KB
testcase_28 AC 42 ms
52,736 KB
testcase_29 AC 42 ms
52,736 KB
testcase_30 AC 42 ms
52,864 KB
testcase_31 AC 281 ms
97,280 KB
testcase_32 AC 333 ms
93,824 KB
testcase_33 AC 277 ms
97,408 KB
testcase_34 AC 194 ms
80,640 KB
testcase_35 AC 302 ms
101,104 KB
testcase_36 AC 257 ms
90,112 KB
testcase_37 AC 365 ms
97,536 KB
testcase_38 AC 239 ms
84,224 KB
testcase_39 AC 202 ms
82,048 KB
testcase_40 AC 223 ms
92,032 KB
testcase_41 AC 226 ms
84,608 KB
testcase_42 AC 491 ms
128,900 KB
testcase_43 AC 305 ms
94,848 KB
testcase_44 AC 534 ms
127,952 KB
testcase_45 AC 401 ms
115,484 KB
testcase_46 AC 506 ms
128,972 KB
testcase_47 AC 344 ms
97,384 KB
testcase_48 AC 511 ms
150,112 KB
testcase_49 AC 390 ms
108,284 KB
testcase_50 AC 463 ms
130,968 KB
testcase_51 AC 616 ms
129,016 KB
testcase_52 AC 267 ms
98,816 KB
testcase_53 AC 494 ms
128,052 KB
testcase_54 AC 601 ms
149,876 KB
testcase_55 AC 516 ms
127,940 KB
testcase_56 AC 363 ms
102,472 KB
testcase_57 AC 624 ms
148,740 KB
testcase_58 AC 637 ms
148,736 KB
testcase_59 AC 639 ms
148,744 KB
testcase_60 AC 625 ms
148,736 KB
testcase_61 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# マッチング、最大流ではMLEした
# Ford_FulkersonができるのはN100前後だけ
# 公式解説はまったく違うやり方
# 一般の人について、所持金の低い順に走査
# それぞれの購買者について、買うことのできる商品の中で最も「MMA 部員が購入できる値段」が高いものを購入
# MMA 部員について、所持金の低い順に走査
# それぞれの購買者について、買うことのできる商品があったら購入
# それをheapで実装

from heapq import *

N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
A_idx_sorted = sorted(enumerate(A), key=lambda x:-x[1])

people0 = []
people1 = []
for i in range(M):
    t, c = map(int, input().split())
    if t == 0:
        people0.append(c)
    elif t == 1:
        people1.append(c)
people0.sort()
people1.sort()

H0 = []
heapify(H0)
for c in people0:
    while A_idx_sorted and A_idx_sorted[-1][1] <= c:
        # aを小さい順にみて、使えるaに対応するbをheappush
        idx, a = A_idx_sorted.pop()
        heappush(H0, -B[idx])
    if H0:
        # cで購入する1つだけをheappopする
        heappop(H0)

H1 = [-b for b in H0]
heapify(H1)

for idx, a in A_idx_sorted:
    heappush(H1, B[idx])

for c in people1:
    if H1 and H1[0] <= c:
        heappop(H1)

# 購入されずにheapに残った個数が答え
print(len(H1))
0