結果

問題 No.2422 regisys?
ユーザー mkawa2mkawa2
提出日時 2023-08-12 15:44:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 605 ms / 2,000 ms
コード長 1,214 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 148,972 KB
最終ジャッジ日時 2024-04-30 10:05:41
合計ジャッジ時間 14,773 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,124 KB
testcase_01 AC 36 ms
53,892 KB
testcase_02 AC 38 ms
53,996 KB
testcase_03 AC 34 ms
53,444 KB
testcase_04 AC 36 ms
53,668 KB
testcase_05 AC 38 ms
55,184 KB
testcase_06 AC 37 ms
53,728 KB
testcase_07 AC 36 ms
53,940 KB
testcase_08 AC 37 ms
55,012 KB
testcase_09 AC 36 ms
53,564 KB
testcase_10 AC 35 ms
54,856 KB
testcase_11 AC 37 ms
53,480 KB
testcase_12 AC 34 ms
53,064 KB
testcase_13 AC 36 ms
53,288 KB
testcase_14 AC 35 ms
53,664 KB
testcase_15 AC 35 ms
54,732 KB
testcase_16 AC 36 ms
54,196 KB
testcase_17 AC 35 ms
53,668 KB
testcase_18 AC 36 ms
54,096 KB
testcase_19 AC 35 ms
53,852 KB
testcase_20 AC 35 ms
53,628 KB
testcase_21 AC 35 ms
53,564 KB
testcase_22 AC 35 ms
55,136 KB
testcase_23 AC 36 ms
54,780 KB
testcase_24 AC 35 ms
54,012 KB
testcase_25 AC 35 ms
55,364 KB
testcase_26 AC 34 ms
53,504 KB
testcase_27 AC 35 ms
53,824 KB
testcase_28 AC 35 ms
54,268 KB
testcase_29 AC 36 ms
54,348 KB
testcase_30 AC 35 ms
54,436 KB
testcase_31 AC 234 ms
94,416 KB
testcase_32 AC 278 ms
91,692 KB
testcase_33 AC 239 ms
94,708 KB
testcase_34 AC 157 ms
80,972 KB
testcase_35 AC 263 ms
101,420 KB
testcase_36 AC 212 ms
89,396 KB
testcase_37 AC 311 ms
96,112 KB
testcase_38 AC 194 ms
85,428 KB
testcase_39 AC 158 ms
81,268 KB
testcase_40 AC 187 ms
91,540 KB
testcase_41 AC 184 ms
83,664 KB
testcase_42 AC 435 ms
126,320 KB
testcase_43 AC 243 ms
93,108 KB
testcase_44 AC 474 ms
126,052 KB
testcase_45 AC 360 ms
114,708 KB
testcase_46 AC 445 ms
127,196 KB
testcase_47 AC 299 ms
96,976 KB
testcase_48 AC 473 ms
148,172 KB
testcase_49 AC 346 ms
107,816 KB
testcase_50 AC 434 ms
148,972 KB
testcase_51 AC 549 ms
126,480 KB
testcase_52 AC 233 ms
96,512 KB
testcase_53 AC 450 ms
125,612 KB
testcase_54 AC 512 ms
148,132 KB
testcase_55 AC 470 ms
126,080 KB
testcase_56 AC 306 ms
102,620 KB
testcase_57 AC 605 ms
146,448 KB
testcase_58 AC 598 ms
146,300 KB
testcase_59 AC 583 ms
146,044 KB
testcase_60 AC 577 ms
145,908 KB
testcase_61 AC 35 ms
52,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(1000005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

from heapq import *

n,m=LI()
aa=LI()
bb=LI()
ua=sorted(enumerate(aa),key=lambda x:-x[1])

cc=[[],[]]
for _ in range(m):
    t,c=LI()
    cc[t].append(c)

cc[0].sort()
cc[1].sort()
hp=[]
for c in cc[0]:
    while ua and ua[-1][1]<=c:
        u,a=ua.pop()
        heappush(hp,-bb[u])
    if hp:heappop(hp)
    # pDB(c,ua,hp)

hp=[-b for b in hp]
heapify(hp)

for u,a in ua:heappush(hp,bb[u])
# pDB(hp)

for c in cc[1]:
    if hp and hp[0]<=c:heappop(hp)

print(len(hp))
0