結果

問題 No.2422 regisys?
ユーザー pありpあり
提出日時 2023-08-12 15:13:35
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 952 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 148,124 KB
最終ジャッジ日時 2024-11-20 00:29:35
合計ジャッジ時間 40,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,736 KB
testcase_01 AC 46 ms
53,248 KB
testcase_02 AC 47 ms
53,248 KB
testcase_03 AC 46 ms
52,992 KB
testcase_04 AC 49 ms
53,248 KB
testcase_05 AC 51 ms
53,888 KB
testcase_06 AC 52 ms
54,528 KB
testcase_07 AC 48 ms
53,376 KB
testcase_08 AC 51 ms
54,144 KB
testcase_09 AC 47 ms
52,992 KB
testcase_10 AC 47 ms
53,120 KB
testcase_11 AC 47 ms
53,632 KB
testcase_12 AC 45 ms
52,224 KB
testcase_13 AC 50 ms
54,016 KB
testcase_14 AC 46 ms
52,864 KB
testcase_15 AC 48 ms
53,504 KB
testcase_16 AC 46 ms
53,376 KB
testcase_17 AC 47 ms
53,120 KB
testcase_18 AC 46 ms
53,376 KB
testcase_19 AC 51 ms
53,888 KB
testcase_20 AC 49 ms
54,400 KB
testcase_21 AC 48 ms
53,504 KB
testcase_22 AC 47 ms
53,248 KB
testcase_23 AC 49 ms
53,760 KB
testcase_24 AC 47 ms
53,248 KB
testcase_25 AC 46 ms
53,632 KB
testcase_26 AC 43 ms
52,608 KB
testcase_27 AC 47 ms
52,864 KB
testcase_28 AC 48 ms
53,376 KB
testcase_29 AC 47 ms
53,376 KB
testcase_30 AC 47 ms
52,992 KB
testcase_31 AC 705 ms
98,580 KB
testcase_32 AC 1,027 ms
94,132 KB
testcase_33 AC 657 ms
98,836 KB
testcase_34 AC 482 ms
83,624 KB
testcase_35 AC 791 ms
109,144 KB
testcase_36 AC 751 ms
93,568 KB
testcase_37 AC 1,096 ms
97,408 KB
testcase_38 AC 731 ms
90,420 KB
testcase_39 AC 528 ms
84,856 KB
testcase_40 AC 467 ms
89,600 KB
testcase_41 AC 588 ms
86,016 KB
testcase_42 AC 1,286 ms
135,532 KB
testcase_43 AC 840 ms
92,544 KB
testcase_44 AC 1,417 ms
132,396 KB
testcase_45 AC 1,183 ms
126,844 KB
testcase_46 AC 1,399 ms
136,504 KB
testcase_47 AC 1,015 ms
104,452 KB
testcase_48 AC 1,420 ms
144,880 KB
testcase_49 AC 1,234 ms
117,120 KB
testcase_50 AC 1,289 ms
148,124 KB
testcase_51 AC 1,870 ms
135,768 KB
testcase_52 AC 657 ms
101,124 KB
testcase_53 AC 1,390 ms
132,120 KB
testcase_54 AC 1,860 ms
143,984 KB
testcase_55 AC 1,462 ms
130,392 KB
testcase_56 AC 1,217 ms
110,776 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 44 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)
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==0):
    while(aa[anow][0] <= c):
      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(bb[bnow][0] <= c):
      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