結果

問題 No.2422 regisys?
ユーザー FromBooskaFromBooska
提出日時 2023-08-20 20:24:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 705 ms / 2,000 ms
コード長 1,447 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 150,240 KB
最終ジャッジ日時 2024-12-14 02:45:56
合計ジャッジ時間 19,470 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 39 ms
52,888 KB
testcase_02 AC 41 ms
52,864 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 39 ms
53,376 KB
testcase_05 AC 42 ms
53,376 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 40 ms
52,992 KB
testcase_08 AC 41 ms
53,248 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 41 ms
52,864 KB
testcase_12 AC 38 ms
52,992 KB
testcase_13 AC 42 ms
53,120 KB
testcase_14 AC 39 ms
52,608 KB
testcase_15 AC 41 ms
53,248 KB
testcase_16 AC 40 ms
52,864 KB
testcase_17 AC 41 ms
52,992 KB
testcase_18 AC 40 ms
52,480 KB
testcase_19 AC 42 ms
53,120 KB
testcase_20 AC 42 ms
53,504 KB
testcase_21 AC 41 ms
53,120 KB
testcase_22 AC 41 ms
52,480 KB
testcase_23 AC 42 ms
53,504 KB
testcase_24 AC 39 ms
52,864 KB
testcase_25 AC 40 ms
52,992 KB
testcase_26 AC 40 ms
52,480 KB
testcase_27 AC 40 ms
52,736 KB
testcase_28 AC 41 ms
53,120 KB
testcase_29 AC 40 ms
53,120 KB
testcase_30 AC 40 ms
53,504 KB
testcase_31 AC 283 ms
96,264 KB
testcase_32 AC 349 ms
93,952 KB
testcase_33 AC 279 ms
97,280 KB
testcase_34 AC 198 ms
80,896 KB
testcase_35 AC 305 ms
100,868 KB
testcase_36 AC 265 ms
90,368 KB
testcase_37 AC 377 ms
97,408 KB
testcase_38 AC 254 ms
84,480 KB
testcase_39 AC 199 ms
81,920 KB
testcase_40 AC 223 ms
92,032 KB
testcase_41 AC 225 ms
83,968 KB
testcase_42 AC 494 ms
128,780 KB
testcase_43 AC 297 ms
94,464 KB
testcase_44 AC 556 ms
128,288 KB
testcase_45 AC 413 ms
115,792 KB
testcase_46 AC 506 ms
128,856 KB
testcase_47 AC 354 ms
97,132 KB
testcase_48 AC 537 ms
150,240 KB
testcase_49 AC 396 ms
108,708 KB
testcase_50 AC 497 ms
131,492 KB
testcase_51 AC 624 ms
128,936 KB
testcase_52 AC 271 ms
98,432 KB
testcase_53 AC 516 ms
127,788 KB
testcase_54 AC 619 ms
149,876 KB
testcase_55 AC 539 ms
127,812 KB
testcase_56 AC 383 ms
102,964 KB
testcase_57 AC 691 ms
148,088 KB
testcase_58 AC 693 ms
148,944 KB
testcase_59 AC 705 ms
148,484 KB
testcase_60 AC 667 ms
148,228 KB
testcase_61 AC 40 ms
51,840 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