結果

問題 No.2422 regisys?
ユーザー FromBooskaFromBooska
提出日時 2023-08-20 18:01:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,414 bytes
コンパイル時間 800 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 191,576 KB
最終ジャッジ日時 2024-11-30 21:46:54
合計ジャッジ時間 97,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,472 KB
testcase_01 AC 45 ms
157,056 KB
testcase_02 AC 44 ms
63,872 KB
testcase_03 AC 45 ms
152,192 KB
testcase_04 AC 42 ms
64,384 KB
testcase_05 AC 48 ms
159,616 KB
testcase_06 AC 52 ms
66,816 KB
testcase_07 AC 45 ms
140,928 KB
testcase_08 AC 48 ms
65,920 KB
testcase_09 AC 43 ms
165,580 KB
testcase_10 AC 42 ms
63,616 KB
testcase_11 AC 48 ms
153,344 KB
testcase_12 AC 36 ms
57,472 KB
testcase_13 AC 50 ms
159,360 KB
testcase_14 AC 38 ms
57,600 KB
testcase_15 AC 50 ms
146,688 KB
testcase_16 AC 45 ms
64,128 KB
testcase_17 AC 39 ms
135,808 KB
testcase_18 AC 38 ms
57,600 KB
testcase_19 AC 52 ms
152,960 KB
testcase_20 AC 51 ms
66,816 KB
testcase_21 AC 50 ms
146,688 KB
testcase_22 AC 48 ms
64,640 KB
testcase_23 AC 53 ms
185,816 KB
testcase_24 AC 47 ms
64,896 KB
testcase_25 AC 49 ms
153,344 KB
testcase_26 AC 38 ms
57,344 KB
testcase_27 AC 44 ms
181,928 KB
testcase_28 AC 47 ms
65,408 KB
testcase_29 AC 44 ms
182,896 KB
testcase_30 AC 48 ms
64,768 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 36 ms
191,576 KB
権限があれば一括ダウンロードができます

ソースコード

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