結果

問題 No.2422 regisys?
ユーザー pありpあり
提出日時 2023-08-12 14:44:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,022 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 147,948 KB
最終ジャッジ日時 2024-11-19 21:17:25
合計ジャッジ時間 39,091 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,060 KB
testcase_01 AC 41 ms
54,916 KB
testcase_02 AC 42 ms
54,844 KB
testcase_03 AC 42 ms
54,576 KB
testcase_04 AC 41 ms
53,808 KB
testcase_05 AC 44 ms
56,268 KB
testcase_06 AC 44 ms
56,124 KB
testcase_07 AC 43 ms
55,864 KB
testcase_08 AC 43 ms
54,924 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
54,540 KB
testcase_13 AC 43 ms
55,436 KB
testcase_14 AC 41 ms
53,492 KB
testcase_15 WA -
testcase_16 AC 42 ms
54,488 KB
testcase_17 AC 42 ms
54,920 KB
testcase_18 AC 41 ms
53,852 KB
testcase_19 WA -
testcase_20 AC 44 ms
55,404 KB
testcase_21 AC 43 ms
54,244 KB
testcase_22 AC 41 ms
53,568 KB
testcase_23 AC 43 ms
55,176 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 42 ms
55,176 KB
testcase_29 WA -
testcase_30 AC 41 ms
54,364 KB
testcase_31 WA -
testcase_32 AC 995 ms
94,468 KB
testcase_33 AC 621 ms
98,656 KB
testcase_34 AC 448 ms
84,348 KB
testcase_35 WA -
testcase_36 AC 719 ms
93,400 KB
testcase_37 WA -
testcase_38 AC 695 ms
90,036 KB
testcase_39 AC 508 ms
84,672 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 812 ms
92,868 KB
testcase_44 WA -
testcase_45 AC 1,116 ms
126,912 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 1,218 ms
147,948 KB
testcase_51 WA -
testcase_52 AC 627 ms
101,556 KB
testcase_53 WA -
testcase_54 AC 1,753 ms
144,028 KB
testcase_55 AC 1,448 ms
130,468 KB
testcase_56 WA -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 40 ms
52,952 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)
n+=1

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)-1)
  
  
      




0