結果

問題 No.2422 regisys?
ユーザー rlangevinrlangevin
提出日時 2023-09-03 16:45:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 797 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 139,232 KB
最終ジャッジ日時 2024-06-12 22:23:49
合計ジャッジ時間 33,261 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,152 KB
testcase_01 AC 37 ms
52,364 KB
testcase_02 AC 39 ms
52,876 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,884 KB
testcase_05 AC 39 ms
53,348 KB
testcase_06 WA -
testcase_07 AC 37 ms
53,424 KB
testcase_08 AC 37 ms
52,688 KB
testcase_09 AC 38 ms
53,048 KB
testcase_10 AC 39 ms
52,544 KB
testcase_11 WA -
testcase_12 AC 38 ms
54,024 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,504 KB
testcase_15 WA -
testcase_16 AC 38 ms
52,892 KB
testcase_17 AC 38 ms
53,292 KB
testcase_18 AC 39 ms
53,156 KB
testcase_19 AC 38 ms
53,076 KB
testcase_20 WA -
testcase_21 AC 37 ms
53,564 KB
testcase_22 AC 37 ms
53,152 KB
testcase_23 AC 38 ms
53,544 KB
testcase_24 AC 37 ms
53,356 KB
testcase_25 AC 37 ms
52,492 KB
testcase_26 AC 37 ms
52,648 KB
testcase_27 AC 37 ms
53,228 KB
testcase_28 AC 38 ms
52,968 KB
testcase_29 AC 38 ms
52,080 KB
testcase_30 AC 37 ms
52,700 KB
testcase_31 AC 518 ms
96,536 KB
testcase_32 AC 449 ms
91,920 KB
testcase_33 AC 507 ms
96,240 KB
testcase_34 AC 176 ms
81,492 KB
testcase_35 AC 656 ms
106,052 KB
testcase_36 AC 309 ms
91,916 KB
testcase_37 AC 527 ms
96,328 KB
testcase_38 AC 238 ms
86,044 KB
testcase_39 AC 191 ms
82,296 KB
testcase_40 WA -
testcase_41 AC 233 ms
85,832 KB
testcase_42 AC 1,252 ms
122,000 KB
testcase_43 WA -
testcase_44 AC 1,291 ms
120,904 KB
testcase_45 WA -
testcase_46 AC 1,271 ms
122,088 KB
testcase_47 WA -
testcase_48 AC 1,477 ms
139,232 KB
testcase_49 WA -
testcase_50 AC 1,388 ms
120,552 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 1,489 ms
139,120 KB
testcase_55 AC 1,326 ms
119,936 KB
testcase_56 AC 738 ms
107,444 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 36 ms
52,764 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()

ans = 0
cnt = 0
for i in range(N):
    if D[i][2] >= 1:
        cnt += D[i][2] - 1
        ans += 1
    else:
        if cnt:
            ans += 1
            cnt -= 1
print(N - ans)
0