結果

問題 No.1767 BLUE to RED
ユーザー H3PO4H3PO4
提出日時 2024-07-05 09:40:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,380 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 210,520 KB
最終ジャッジ日時 2024-07-05 09:41:11
合計ジャッジ時間 19,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 51 ms
61,568 KB
testcase_05 AC 77 ms
71,424 KB
testcase_06 AC 54 ms
60,416 KB
testcase_07 AC 90 ms
76,672 KB
testcase_08 AC 102 ms
76,828 KB
testcase_09 AC 727 ms
142,432 KB
testcase_10 AC 1,002 ms
172,832 KB
testcase_11 AC 833 ms
153,300 KB
testcase_12 AC 769 ms
142,892 KB
testcase_13 AC 1,106 ms
181,636 KB
testcase_14 AC 1,291 ms
210,420 KB
testcase_15 AC 1,332 ms
210,520 KB
testcase_16 AC 1,279 ms
209,388 KB
testcase_17 AC 1,349 ms
209,260 KB
testcase_18 AC 1,278 ms
209,396 KB
testcase_19 AC 1,329 ms
209,632 KB
testcase_20 AC 1,380 ms
210,104 KB
testcase_21 AC 1,323 ms
210,012 KB
testcase_22 AC 1,289 ms
209,256 KB
testcase_23 AC 1,307 ms
209,264 KB
権限があれば一括ダウンロードができます

ソースコード

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