結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,380 KB
testcase_01 AC 35 ms
54,296 KB
testcase_02 AC 41 ms
60,556 KB
testcase_03 AC 33 ms
53,064 KB
testcase_04 AC 35 ms
61,184 KB
testcase_05 AC 33 ms
55,576 KB
testcase_06 AC 33 ms
54,916 KB
testcase_07 AC 38 ms
54,144 KB
testcase_08 AC 36 ms
55,476 KB
testcase_09 AC 36 ms
55,292 KB
testcase_10 AC 33 ms
54,368 KB
testcase_11 AC 33 ms
54,656 KB
testcase_12 AC 31 ms
53,216 KB
testcase_13 AC 33 ms
54,980 KB
testcase_14 AC 34 ms
54,772 KB
testcase_15 AC 33 ms
54,984 KB
testcase_16 AC 37 ms
58,580 KB
testcase_17 AC 33 ms
53,848 KB
testcase_18 AC 34 ms
60,180 KB
testcase_19 AC 33 ms
54,536 KB
testcase_20 AC 32 ms
55,636 KB
testcase_21 AC 33 ms
54,328 KB
testcase_22 AC 33 ms
54,120 KB
testcase_23 AC 33 ms
54,780 KB
testcase_24 AC 32 ms
54,548 KB
testcase_25 AC 35 ms
59,952 KB
testcase_26 AC 32 ms
54,280 KB
testcase_27 AC 32 ms
54,120 KB
testcase_28 AC 34 ms
54,640 KB
testcase_29 AC 40 ms
60,496 KB
testcase_30 AC 36 ms
54,668 KB
testcase_31 AC 291 ms
94,224 KB
testcase_32 AC 293 ms
91,620 KB
testcase_33 AC 307 ms
95,276 KB
testcase_34 AC 166 ms
80,996 KB
testcase_35 AC 334 ms
101,188 KB
testcase_36 AC 231 ms
89,152 KB
testcase_37 AC 327 ms
95,856 KB
testcase_38 AC 198 ms
84,360 KB
testcase_39 AC 166 ms
81,936 KB
testcase_40 AC 211 ms
90,356 KB
testcase_41 AC 198 ms
83,744 KB
testcase_42 AC 549 ms
121,420 KB
testcase_43 AC 282 ms
91,404 KB
testcase_44 AC 547 ms
121,856 KB
testcase_45 AC 481 ms
113,512 KB
testcase_46 AC 526 ms
122,928 KB
testcase_47 AC 361 ms
98,856 KB
testcase_48 AC 623 ms
148,912 KB
testcase_49 AC 386 ms
107,340 KB
testcase_50 AC 550 ms
148,404 KB
testcase_51 AC 601 ms
121,920 KB
testcase_52 AC 296 ms
96,720 KB
testcase_53 AC 541 ms
121,576 KB
testcase_54 AC 636 ms
147,048 KB
testcase_55 AC 604 ms
122,184 KB
testcase_56 AC 387 ms
105,156 KB
testcase_57 AC 582 ms
143,072 KB
testcase_58 AC 608 ms
143,072 KB
testcase_59 AC 609 ms
143,324 KB
testcase_60 AC 581 ms
143,180 KB
testcase_61 AC 32 ms
53,760 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