結果

問題 No.2422 regisys?
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-23 07:59:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,295 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 151,524 KB
最終ジャッジ日時 2024-06-01 05:44:22
合計ジャッジ時間 41,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 42 ms
53,120 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 45 ms
53,120 KB
testcase_04 AC 43 ms
52,992 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 44 ms
54,124 KB
testcase_07 AC 41 ms
52,992 KB
testcase_08 AC 43 ms
53,632 KB
testcase_09 AC 42 ms
53,248 KB
testcase_10 AC 42 ms
52,608 KB
testcase_11 AC 42 ms
53,504 KB
testcase_12 AC 40 ms
52,736 KB
testcase_13 AC 43 ms
53,632 KB
testcase_14 AC 43 ms
52,864 KB
testcase_15 AC 42 ms
53,120 KB
testcase_16 AC 42 ms
53,504 KB
testcase_17 AC 42 ms
53,120 KB
testcase_18 AC 42 ms
52,736 KB
testcase_19 AC 43 ms
52,992 KB
testcase_20 AC 44 ms
54,144 KB
testcase_21 AC 41 ms
53,120 KB
testcase_22 AC 41 ms
52,736 KB
testcase_23 AC 41 ms
53,376 KB
testcase_24 AC 42 ms
53,376 KB
testcase_25 AC 41 ms
52,864 KB
testcase_26 AC 40 ms
52,736 KB
testcase_27 AC 42 ms
53,376 KB
testcase_28 AC 42 ms
53,504 KB
testcase_29 AC 41 ms
52,736 KB
testcase_30 AC 41 ms
52,608 KB
testcase_31 AC 669 ms
103,604 KB
testcase_32 AC 971 ms
101,852 KB
testcase_33 AC 621 ms
103,676 KB
testcase_34 AC 432 ms
86,092 KB
testcase_35 AC 773 ms
112,880 KB
testcase_36 AC 675 ms
93,068 KB
testcase_37 AC 988 ms
104,560 KB
testcase_38 AC 663 ms
91,732 KB
testcase_39 AC 472 ms
86,376 KB
testcase_40 AC 437 ms
91,324 KB
testcase_41 AC 524 ms
89,344 KB
testcase_42 AC 1,342 ms
132,196 KB
testcase_43 AC 800 ms
97,876 KB
testcase_44 AC 1,375 ms
132,536 KB
testcase_45 AC 1,152 ms
125,572 KB
testcase_46 AC 1,398 ms
132,648 KB
testcase_47 AC 955 ms
110,616 KB
testcase_48 AC 1,463 ms
146,656 KB
testcase_49 AC 1,223 ms
119,580 KB
testcase_50 AC 1,384 ms
143,744 KB
testcase_51 AC 1,897 ms
135,132 KB
testcase_52 AC 637 ms
104,312 KB
testcase_53 AC 1,380 ms
128,028 KB
testcase_54 AC 1,807 ms
147,804 KB
testcase_55 AC 1,453 ms
129,896 KB
testcase_56 AC 1,145 ms
119,496 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 44 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

とりあえず、小さい方から見る
すると、自分が買わなかったものは後の人が買えるので、どれを選んでもOK
後は、相手側の一番高い物を買えばよい…?

"""

import sys
from sys import stdin
import heapq

N,M = map(int,stdin.readline().split())
A = list(map(int,stdin.readline().split()))
B = list(map(int,stdin.readline().split()))

CT = []

for i in range(M):

    T,C = map(int,stdin.readline().split())
    CT.append( (C,T) )

CT.sort()

able = [True] * N

AtoB = [(A[i],B[i],i) for i in range(N)]
AtoB.sort(); AtoB.reverse()

BtoA = [(B[i],A[i],i) for i in range(N)]
BtoA.sort(); BtoA.reverse()

q0 = []
q1 = []

ans = N

for C,T in CT:

    if T == 0:
        while AtoB and AtoB[-1][0] <= C:
            na,nb,i = AtoB.pop()
            heapq.heappush( q0 , (-nb,i) )

        while q0:
            mnb,i = heapq.heappop(q0)
            if able[i]:
                able[i] = False
                ans -= 1
                break

    else:
        while BtoA and BtoA[-1][0] <= C:
            nb,na,i = BtoA.pop()
            heapq.heappush( q1, (-na,i) )

        while q1:
            mna,i = heapq.heappop(q1)
            if able[i]:
                able[i] = False
                ans -= 1
                break

print (ans)
0