結果

問題 No.1767 BLUE to RED
ユーザー wgrapewgrape
提出日時 2024-10-18 16:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,759 ms / 2,000 ms
コード長 766 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 316,264 KB
最終ジャッジ日時 2024-10-18 16:52:18
合計ジャッジ時間 27,297 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,540 KB
testcase_01 AC 36 ms
53,004 KB
testcase_02 AC 36 ms
53,348 KB
testcase_03 AC 37 ms
53,120 KB
testcase_04 AC 52 ms
65,096 KB
testcase_05 AC 69 ms
72,020 KB
testcase_06 AC 44 ms
60,868 KB
testcase_07 AC 94 ms
77,276 KB
testcase_08 AC 101 ms
77,856 KB
testcase_09 AC 936 ms
214,700 KB
testcase_10 AC 1,229 ms
252,744 KB
testcase_11 AC 1,008 ms
230,944 KB
testcase_12 AC 882 ms
215,732 KB
testcase_13 AC 1,384 ms
267,604 KB
testcase_14 AC 1,671 ms
315,656 KB
testcase_15 AC 1,727 ms
315,680 KB
testcase_16 AC 1,726 ms
315,884 KB
testcase_17 AC 1,725 ms
316,140 KB
testcase_18 AC 1,718 ms
316,264 KB
testcase_19 AC 1,699 ms
315,724 KB
testcase_20 AC 1,733 ms
315,204 KB
testcase_21 AC 1,718 ms
315,864 KB
testcase_22 AC 1,684 ms
315,700 KB
testcase_23 AC 1,759 ms
315,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))

A = [[A[i], True] for i in range(N)]
B = [[B[i], False] for i in range(M)]

AB = sorted(A + B, key = lambda x:x[0])

G = [[] for i in range(N + M)]
import heapq as hq
q = []
for i in range(N + M - 1):
    G[i].append([i + 1, AB[i + 1][0] - AB[i][0]])
    G[i + 1].append([i, AB[i + 1][0] - AB[i][0]])
    if AB[i][1]:
        hq.heappush(q, (0, i))

if AB[N + M - 1][1]:
    hq.heappush(q, (0, N + M - 1))
    
ans = 0
seen = set()
while q:
    d, v = hq.heappop(q)
    if v in seen:
        continue
    seen.add(v)
    ans += d
    for child, cost in G[v]:
        if child in seen:
            continue
        hq.heappush(q, (cost, child))
        
print(ans)
0