結果

問題 No.2422 regisys?
ユーザー とりゐとりゐ
提出日時 2023-08-12 14:59:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,081 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 671 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 132,472 KB
最終ジャッジ日時 2024-11-19 22:34:17
合計ジャッジ時間 23,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,864 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 44 ms
53,120 KB
testcase_03 AC 43 ms
52,760 KB
testcase_04 AC 43 ms
52,992 KB
testcase_05 AC 44 ms
53,376 KB
testcase_06 AC 43 ms
52,992 KB
testcase_07 AC 43 ms
52,736 KB
testcase_08 AC 43 ms
53,120 KB
testcase_09 AC 42 ms
52,992 KB
testcase_10 AC 43 ms
53,120 KB
testcase_11 AC 43 ms
52,864 KB
testcase_12 AC 43 ms
52,736 KB
testcase_13 AC 47 ms
53,760 KB
testcase_14 AC 43 ms
52,608 KB
testcase_15 AC 43 ms
53,120 KB
testcase_16 AC 43 ms
52,736 KB
testcase_17 AC 43 ms
52,608 KB
testcase_18 AC 43 ms
52,992 KB
testcase_19 AC 44 ms
53,248 KB
testcase_20 AC 44 ms
53,632 KB
testcase_21 AC 42 ms
53,096 KB
testcase_22 AC 43 ms
52,992 KB
testcase_23 AC 45 ms
53,504 KB
testcase_24 AC 43 ms
52,992 KB
testcase_25 AC 44 ms
52,992 KB
testcase_26 AC 43 ms
52,352 KB
testcase_27 AC 43 ms
52,480 KB
testcase_28 AC 45 ms
52,992 KB
testcase_29 AC 44 ms
53,248 KB
testcase_30 AC 44 ms
52,992 KB
testcase_31 AC 394 ms
97,152 KB
testcase_32 AC 415 ms
92,160 KB
testcase_33 AC 399 ms
97,072 KB
testcase_34 AC 208 ms
81,532 KB
testcase_35 AC 463 ms
100,908 KB
testcase_36 AC 299 ms
86,988 KB
testcase_37 AC 469 ms
96,972 KB
testcase_38 AC 251 ms
85,044 KB
testcase_39 AC 214 ms
81,152 KB
testcase_40 AC 275 ms
87,548 KB
testcase_41 AC 255 ms
83,932 KB
testcase_42 AC 818 ms
109,056 KB
testcase_43 AC 361 ms
92,420 KB
testcase_44 AC 834 ms
111,456 KB
testcase_45 AC 700 ms
106,804 KB
testcase_46 AC 827 ms
111,192 KB
testcase_47 AC 503 ms
98,448 KB
testcase_48 AC 910 ms
114,900 KB
testcase_49 AC 599 ms
104,344 KB
testcase_50 AC 824 ms
114,288 KB
testcase_51 AC 866 ms
112,652 KB
testcase_52 AC 417 ms
98,432 KB
testcase_53 AC 827 ms
110,060 KB
testcase_54 AC 994 ms
132,472 KB
testcase_55 AC 859 ms
112,260 KB
testcase_56 AC 524 ms
104,212 KB
testcase_57 AC 1,047 ms
131,936 KB
testcase_58 AC 1,051 ms
132,448 KB
testcase_59 AC 1,081 ms
131,980 KB
testcase_60 AC 1,059 ms
132,392 KB
testcase_61 AC 43 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

n,m=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
t0=[]
t1=[]
for i in range(m):
  t,c=map(int,input().split())
  if t:
    t1.append(c)
  else:
    t0.append(c)

t0.sort()
t1.sort()

from heapq import heappop, heappush
ab=[]
for i in range(n):
  ab.append([a[i],b[i]])

ab.sort()
idx=0
hq=[]
ans=0
for c in t0:
  while idx!=n and ab[idx][0]<=c:
    heappush(hq,-ab[idx][1])
    idx+=1
  if hq:
    ans+=1
    heappop(hq)

while idx!=n:
  heappush(hq,-ab[idx][1])
  idx+=1

hq2=[]
for i in hq:
  heappush(hq2,-i)

for c in t1:
  if hq2 and hq2[0]<=c:
    heappop(hq2)
    ans+=1
print(n-ans)
0