結果

問題 No.2422 regisys?
ユーザー titiatitia
提出日時 2023-08-22 03:02:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 670 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 148,712 KB
最終ジャッジ日時 2024-12-15 20:15:06
合計ジャッジ時間 19,247 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 37 ms
53,248 KB
testcase_02 AC 44 ms
59,520 KB
testcase_03 AC 39 ms
53,248 KB
testcase_04 AC 42 ms
59,264 KB
testcase_05 AC 38 ms
53,632 KB
testcase_06 AC 39 ms
53,760 KB
testcase_07 AC 36 ms
53,504 KB
testcase_08 AC 37 ms
53,376 KB
testcase_09 AC 37 ms
52,992 KB
testcase_10 AC 37 ms
53,632 KB
testcase_11 AC 48 ms
53,120 KB
testcase_12 AC 35 ms
53,504 KB
testcase_13 AC 38 ms
53,632 KB
testcase_14 AC 36 ms
53,248 KB
testcase_15 AC 39 ms
53,376 KB
testcase_16 AC 42 ms
58,496 KB
testcase_17 AC 38 ms
52,992 KB
testcase_18 AC 40 ms
59,264 KB
testcase_19 AC 41 ms
53,760 KB
testcase_20 AC 39 ms
53,888 KB
testcase_21 AC 36 ms
53,376 KB
testcase_22 AC 35 ms
53,760 KB
testcase_23 AC 37 ms
54,144 KB
testcase_24 AC 37 ms
53,888 KB
testcase_25 AC 42 ms
58,880 KB
testcase_26 AC 36 ms
53,120 KB
testcase_27 AC 37 ms
53,120 KB
testcase_28 AC 37 ms
53,504 KB
testcase_29 AC 40 ms
58,752 KB
testcase_30 AC 37 ms
53,760 KB
testcase_31 AC 304 ms
94,464 KB
testcase_32 AC 311 ms
91,392 KB
testcase_33 AC 327 ms
95,836 KB
testcase_34 AC 196 ms
80,640 KB
testcase_35 AC 359 ms
100,988 KB
testcase_36 AC 248 ms
89,216 KB
testcase_37 AC 343 ms
96,000 KB
testcase_38 AC 212 ms
83,840 KB
testcase_39 AC 194 ms
82,560 KB
testcase_40 AC 244 ms
90,292 KB
testcase_41 AC 217 ms
83,712 KB
testcase_42 AC 583 ms
121,344 KB
testcase_43 AC 300 ms
91,648 KB
testcase_44 AC 582 ms
122,060 KB
testcase_45 AC 514 ms
113,044 KB
testcase_46 AC 558 ms
122,960 KB
testcase_47 AC 394 ms
98,380 KB
testcase_48 AC 654 ms
148,208 KB
testcase_49 AC 418 ms
107,252 KB
testcase_50 AC 590 ms
148,712 KB
testcase_51 AC 647 ms
121,964 KB
testcase_52 AC 326 ms
96,276 KB
testcase_53 AC 573 ms
121,088 KB
testcase_54 AC 670 ms
146,732 KB
testcase_55 AC 635 ms
122,644 KB
testcase_56 AC 404 ms
105,228 KB
testcase_57 AC 621 ms
143,256 KB
testcase_58 AC 633 ms
142,864 KB
testcase_59 AC 653 ms
143,136 KB
testcase_60 AC 617 ms
142,876 KB
testcase_61 AC 38 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter
from heapq import heappop,heappush

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

AB=[]

for i in range(N):
    AB.append((A[i],B[i]))

C0=[]
C1=[]

for i in range(M):
    t,c=map(int,input().split())
    if t==0:
        C0.append(c)
    else:
        C1.append(c)

C0.sort()
C1.sort()



#AB.sort(key=itemgetter(1),reverse=True)
AB.sort(key=itemgetter(0))

H=[]

ind=0
for i in range(len(C0)):
    c=C0[i]
    while ind<N and AB[ind][0]<=c:
        a,b=AB[ind]
        heappush(H,(-b,a))
        ind+=1

    #print(H,c)

    if H:
        heappop(H)

for i in range(ind,N):
    a,b=AB[i]
    heappush(H,(-b,a))

C1rest=[]

while H:
    a,b=heappop(H)
    C1rest.append(-a)

C1rest.sort()

H=[]
ind=0
for i in range(len(C1)):
    c=C1[i]
    while ind<len(C1rest) and C1rest[ind]<=c:
        heappush(H,-C1rest[ind])
        ind+=1

    if H:
        heappop(H)

for i in range(ind,len(C1rest)):
    heappush(H,-C1rest[i])


print(len(H))
0