結果

問題 No.2422 regisys?
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-23 08:01:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,686 ms / 2,000 ms
コード長 1,346 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 145,952 KB
最終ジャッジ日時 2024-06-01 05:46:36
合計ジャッジ時間 33,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,004 KB
testcase_01 AC 41 ms
53,132 KB
testcase_02 AC 42 ms
53,260 KB
testcase_03 AC 41 ms
54,624 KB
testcase_04 AC 41 ms
53,796 KB
testcase_05 AC 42 ms
53,748 KB
testcase_06 AC 42 ms
54,136 KB
testcase_07 AC 41 ms
54,856 KB
testcase_08 AC 42 ms
54,488 KB
testcase_09 AC 42 ms
54,516 KB
testcase_10 AC 43 ms
54,312 KB
testcase_11 AC 42 ms
54,224 KB
testcase_12 AC 41 ms
53,168 KB
testcase_13 AC 42 ms
54,420 KB
testcase_14 AC 41 ms
54,392 KB
testcase_15 AC 41 ms
52,952 KB
testcase_16 AC 41 ms
53,544 KB
testcase_17 AC 40 ms
53,784 KB
testcase_18 AC 41 ms
54,212 KB
testcase_19 AC 41 ms
54,372 KB
testcase_20 AC 42 ms
54,840 KB
testcase_21 AC 40 ms
53,204 KB
testcase_22 AC 41 ms
53,216 KB
testcase_23 AC 42 ms
54,196 KB
testcase_24 AC 41 ms
54,372 KB
testcase_25 AC 40 ms
53,628 KB
testcase_26 AC 40 ms
54,088 KB
testcase_27 AC 40 ms
53,428 KB
testcase_28 AC 40 ms
52,956 KB
testcase_29 AC 40 ms
53,008 KB
testcase_30 AC 41 ms
53,408 KB
testcase_31 AC 583 ms
102,480 KB
testcase_32 AC 610 ms
97,540 KB
testcase_33 AC 583 ms
103,096 KB
testcase_34 AC 258 ms
84,404 KB
testcase_35 AC 707 ms
111,640 KB
testcase_36 AC 405 ms
90,860 KB
testcase_37 AC 667 ms
100,388 KB
testcase_38 AC 299 ms
89,776 KB
testcase_39 AC 240 ms
84,732 KB
testcase_40 AC 373 ms
91,132 KB
testcase_41 AC 328 ms
87,964 KB
testcase_42 AC 1,255 ms
130,996 KB
testcase_43 AC 594 ms
95,752 KB
testcase_44 AC 1,249 ms
130,580 KB
testcase_45 AC 1,069 ms
124,244 KB
testcase_46 AC 1,259 ms
131,068 KB
testcase_47 AC 807 ms
108,640 KB
testcase_48 AC 1,434 ms
145,952 KB
testcase_49 AC 962 ms
116,712 KB
testcase_50 AC 1,272 ms
144,984 KB
testcase_51 AC 1,368 ms
129,452 KB
testcase_52 AC 585 ms
103,628 KB
testcase_53 AC 1,211 ms
125,684 KB
testcase_54 AC 1,397 ms
143,272 KB
testcase_55 AC 1,287 ms
127,276 KB
testcase_56 AC 740 ms
114,292 KB
testcase_57 AC 1,686 ms
144,928 KB
testcase_58 AC 1,651 ms
145,692 KB
testcase_59 AC 1,681 ms
145,548 KB
testcase_60 AC 1,636 ms
145,560 KB
testcase_61 AC 39 ms
53,080 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 = []

MMM = 10**10

for i in range(M):
    T,C = map(int,stdin.readline().split())
    CT.append( C*MMM+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 tmp in CT:

    C = tmp // MMM
    T = tmp % MMM

    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