結果

問題 No.2422 regisys?
ユーザー FromBooskaFromBooska
提出日時 2023-08-20 18:01:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,414 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 104,760 KB
最終ジャッジ日時 2024-05-08 00:29:03
合計ジャッジ時間 8,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,728 KB
testcase_01 AC 43 ms
59,392 KB
testcase_02 AC 41 ms
58,624 KB
testcase_03 AC 42 ms
59,312 KB
testcase_04 AC 41 ms
59,264 KB
testcase_05 AC 47 ms
61,696 KB
testcase_06 AC 48 ms
61,824 KB
testcase_07 AC 47 ms
60,160 KB
testcase_08 AC 48 ms
61,440 KB
testcase_09 AC 43 ms
59,008 KB
testcase_10 AC 42 ms
58,624 KB
testcase_11 AC 47 ms
61,056 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 49 ms
61,056 KB
testcase_14 AC 37 ms
52,480 KB
testcase_15 AC 48 ms
60,672 KB
testcase_16 AC 43 ms
59,264 KB
testcase_17 AC 38 ms
52,864 KB
testcase_18 AC 38 ms
52,608 KB
testcase_19 AC 49 ms
61,952 KB
testcase_20 AC 49 ms
61,824 KB
testcase_21 AC 46 ms
60,288 KB
testcase_22 AC 44 ms
60,160 KB
testcase_23 AC 49 ms
61,900 KB
testcase_24 AC 43 ms
59,136 KB
testcase_25 AC 45 ms
60,288 KB
testcase_26 AC 37 ms
52,608 KB
testcase_27 AC 45 ms
59,776 KB
testcase_28 AC 46 ms
60,160 KB
testcase_29 AC 42 ms
59,008 KB
testcase_30 AC 44 ms
59,904 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
items = []
for i in range(N):
    items.append([A[i], B[i], 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()
        
for c in people0:
    b_mx = 0
    b_mx_idx = -1
    for i in range(N):
        a, b, d = items[i]
        if d == 1 and a <= c:
            if b > b_mx:
                b_mx = b
                b_mx_idx = i
    if b_mx_idx >= 0:
        items[b_mx_idx][2] = 0
            
for c in people1:
    for i in range(N):
        a, b, d = items[i]
        if d == 1 and b <= c:
            items[i][2] = 0
            break

ans = 0
for a, b, d in items:
    if d == 1:
        ans += 1
print(ans)

0