結果

問題 No.2422 regisys?
ユーザー gr1msl3ygr1msl3y
提出日時 2023-08-16 09:28:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 837 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 222,364 KB
最終ジャッジ日時 2024-05-03 18:16:40
合計ジャッジ時間 29,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 45 ms
59,776 KB
testcase_03 WA -
testcase_04 AC 45 ms
59,648 KB
testcase_05 AC 47 ms
59,392 KB
testcase_06 AC 47 ms
60,416 KB
testcase_07 AC 41 ms
53,120 KB
testcase_08 AC 48 ms
59,136 KB
testcase_09 WA -
testcase_10 AC 45 ms
58,496 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,480 KB
testcase_13 WA -
testcase_14 AC 46 ms
59,008 KB
testcase_15 WA -
testcase_16 AC 45 ms
59,648 KB
testcase_17 AC 39 ms
53,120 KB
testcase_18 AC 44 ms
59,392 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 41 ms
53,888 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 42 ms
52,480 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 888 ms
156,080 KB
testcase_46 AC 1,023 ms
166,692 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 944 ms
176,648 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

C = [list(map(int, input().split())) for _ in range(M)]

S = list(set(A+B))
S.sort()
K = len(S)
task = [[[] for _ in range(2)] for _ in range(K)]
for i, a in enumerate(A):
    ind = bisect_left(S, a)
    task[ind][0].append(i)
for i, b in enumerate(A):
    ind = bisect_left(S, b)
    task[ind][1].append(i)

seen = [0]*N
C.sort(key=lambda x: x[1])
ind_task = 0
X = [[] for _ in range(2)]
for t, v in C:
    while ind_task < K and v >= S[ind_task]:
        for i in range(2):
            for s in task[ind_task][i]:
                X[i].append(s)
        ind_task += 1
    while X[t]:
        ind = X[t].pop()
        if not seen[ind]:
            seen[ind] = 1
            break

print(N-sum(seen))
0