結果

問題 No.2422 regisys?
ユーザー rlangevinrlangevin
提出日時 2023-09-03 17:03:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,166 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 139,124 KB
最終ジャッジ日時 2024-06-12 22:41:22
合計ジャッジ時間 39,798 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,364 KB
testcase_01 AC 39 ms
54,104 KB
testcase_02 AC 38 ms
55,376 KB
testcase_03 WA -
testcase_04 AC 38 ms
55,444 KB
testcase_05 AC 37 ms
55,808 KB
testcase_06 AC 38 ms
55,308 KB
testcase_07 AC 37 ms
55,032 KB
testcase_08 AC 40 ms
54,808 KB
testcase_09 AC 38 ms
55,220 KB
testcase_10 AC 39 ms
54,680 KB
testcase_11 WA -
testcase_12 AC 36 ms
55,788 KB
testcase_13 AC 39 ms
56,296 KB
testcase_14 AC 37 ms
55,132 KB
testcase_15 WA -
testcase_16 AC 42 ms
54,060 KB
testcase_17 AC 42 ms
54,528 KB
testcase_18 AC 42 ms
54,396 KB
testcase_19 AC 44 ms
55,988 KB
testcase_20 AC 39 ms
55,504 KB
testcase_21 AC 38 ms
54,904 KB
testcase_22 AC 39 ms
54,400 KB
testcase_23 AC 39 ms
54,632 KB
testcase_24 AC 39 ms
55,876 KB
testcase_25 AC 39 ms
55,192 KB
testcase_26 AC 40 ms
53,852 KB
testcase_27 AC 40 ms
54,500 KB
testcase_28 AC 39 ms
54,704 KB
testcase_29 AC 38 ms
54,764 KB
testcase_30 AC 39 ms
54,456 KB
testcase_31 AC 653 ms
95,652 KB
testcase_32 AC 578 ms
92,148 KB
testcase_33 AC 643 ms
95,792 KB
testcase_34 AC 206 ms
81,924 KB
testcase_35 AC 822 ms
106,464 KB
testcase_36 AC 417 ms
91,760 KB
testcase_37 AC 671 ms
96,624 KB
testcase_38 AC 287 ms
84,996 KB
testcase_39 AC 226 ms
82,464 KB
testcase_40 AC 383 ms
90,776 KB
testcase_41 AC 280 ms
85,756 KB
testcase_42 AC 1,758 ms
122,076 KB
testcase_43 AC 550 ms
92,320 KB
testcase_44 AC 1,714 ms
120,108 KB
testcase_45 AC 1,380 ms
122,244 KB
testcase_46 AC 1,646 ms
121,920 KB
testcase_47 AC 813 ms
102,004 KB
testcase_48 AC 1,979 ms
139,124 KB
testcase_49 WA -
testcase_50 AC 1,774 ms
120,560 KB
testcase_51 AC 1,773 ms
121,548 KB
testcase_52 AC 713 ms
99,608 KB
testcase_53 AC 1,805 ms
120,584 KB
testcase_54 TLE -
testcase_55 AC 1,757 ms
119,780 KB
testcase_56 AC 947 ms
107,964 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 40 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
D = []
for i in range(N):
    D.append([A[i], B[i], 0])
L = [[-1], [-1]]
for i in range(M):
    T, C = map(int, input().split())
    L[T].append(C)
    
D.sort(reverse=True)
L[0].sort()
L[1].sort()
for i in range(N):
    if D[i][0] <= L[0][-1]:
        D[i][2] += 1
        L[0].pop()
        
for i in range(N):
    D[i][0], D[i][1] = D[i][1], D[i][0]
        
D.sort(reverse=True)
for i in range(N):
    if D[i][0] <= L[1][-1]:
        D[i][2] += 1
        L[1].pop()

from collections import *
ans = 0
cnt = 0
ind = deque()
for i in range(N):
    if D[i][2] == 2:
        ind.append(i)
    elif D[i][2] == 1:
        continue
    else:
        if ind:
            D[ind.popleft()][2] -= 1
            D[i][2] += 1


for i in range(N):
    D[i][0], D[i][1] = D[i][1], D[i][0]
        
D.sort(reverse=True)
ans = 0
cnt = 0
for i in range(N):
    if D[i][2] == 2:
        ans += 1
        cnt += 1
    elif D[i][2] == 1:
        ans += 1
    else:
        if cnt:
            ans += 1
            cnt -= 1

print(N - ans)
0