結果

問題 No.2422 regisys?
ユーザー pありpあり
提出日時 2023-08-12 14:43:39
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,015 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 148,056 KB
最終ジャッジ日時 2024-11-19 21:11:27
合計ジャッジ時間 39,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 RE -
testcase_02 AC 41 ms
53,120 KB
testcase_03 AC 42 ms
53,120 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 WA -
testcase_12 AC 42 ms
52,736 KB
testcase_13 AC 43 ms
54,016 KB
testcase_14 AC 41 ms
53,120 KB
testcase_15 WA -
testcase_16 AC 42 ms
53,376 KB
testcase_17 AC 43 ms
53,248 KB
testcase_18 AC 42 ms
53,120 KB
testcase_19 WA -
testcase_20 AC 45 ms
54,272 KB
testcase_21 AC 43 ms
53,760 KB
testcase_22 AC 41 ms
53,144 KB
testcase_23 AC 44 ms
54,400 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 42 ms
53,376 KB
testcase_29 WA -
testcase_30 AC 43 ms
53,376 KB
testcase_31 WA -
testcase_32 AC 994 ms
94,388 KB
testcase_33 AC 623 ms
98,516 KB
testcase_34 AC 451 ms
83,832 KB
testcase_35 WA -
testcase_36 AC 732 ms
93,312 KB
testcase_37 WA -
testcase_38 AC 707 ms
89,820 KB
testcase_39 AC 510 ms
84,860 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 807 ms
92,416 KB
testcase_44 WA -
testcase_45 AC 1,125 ms
126,972 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 1,259 ms
148,056 KB
testcase_51 WA -
testcase_52 AC 635 ms
101,636 KB
testcase_53 WA -
testcase_54 AC 1,776 ms
144,160 KB
testcase_55 AC 1,448 ms
130,136 KB
testcase_56 WA -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n,m = map(int, input().split())

a = list(map(int, input().split()))
b = list(map(int, input().split()))
a.append(10**10)
b.append(10**10)

aa = []
bb = []
for i in range(n):
  aa.append((a[i], i))
  bb.append((b[i], i))
  
aa.sort()
bb.sort() 
ok = [1 for _ in range(n)]


tt = []
for _ in range(m):
  t,c = map(int, input().split())
  tt.append((c, t))
  
tt.sort()

anow = 0
ha = []
bnow = 0
hb = []

for c,t in tt:
  #print(c,t)
  
  if(t==1):
    while(1):
      if(aa[anow][0] > c):
        break
      heapq.heappush(ha, (-b[aa[anow][1]], aa[anow][1]))
      anow+=1
      
    while(ha):
      _, i = heapq.heappop(ha)
      if(ok[i]==1):
        ok[i]=0
        #print(i)
        break
      
      
  else:
    while(1):
      if(bb[bnow][0] > c):
        break
      heapq.heappush(hb, (-a[bb[bnow][1]], bb[bnow][1]))
      bnow+=1
    while(hb):
      _, i = heapq.heappop(hb)
      if(ok[i]==1):
        ok[i]=0
        #print(i)
        break
  
        
print(sum(ok))
  
  
      




0