結果

問題 No.1767 BLUE to RED
ユーザー H3PO4H3PO4
提出日時 2024-07-05 09:39:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 878 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 247,048 KB
最終ジャッジ日時 2024-07-05 09:40:08
合計ジャッジ時間 16,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,824 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 32 ms
11,264 KB
testcase_05 AC 33 ms
11,136 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 36 ms
11,648 KB
testcase_08 AC 38 ms
11,776 KB
testcase_09 AC 1,684 ms
141,736 KB
testcase_10 TLE -
testcase_11 AC 1,825 ms
150,244 KB
testcase_12 AC 1,724 ms
141,332 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappush, heappop, heapify

input = sys.stdin.buffer.readline
N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

G = [[] for _ in range(N + M + 1)]
S = [(x, 1) for x in A] + [(x, 0) for x in B]
S.sort()
for i, (x, c) in enumerate(S, 1):
    if c:
        G[0].append((i, 0))
        G[i].append((0, 0))
for i in range(1, N + M):
    G[i].append((i + 1, S[i][0] - S[i - 1][0]))
    G[i + 1].append((i, S[i][0] - S[i - 1][0]))

# https://tjkendev.github.io/procon-library/python/graph/min_st_prim.html
used = [0] * (N + M + 1)
que = [(c, w) for w, c in G[0]]
used[0] = 1
heapify(que)

ans = 0
while que:
    cv, v = heappop(que)
    if used[v]:
        continue
    used[v] = 1
    ans += cv
    for w, c in G[v]:
        if used[w]:
            continue
        heappush(que, (c, w))
print(ans)
0