結果

問題 No.5007 Steiner Space Travel
ユーザー ー葵ーAoiー葵ーAoi
提出日時 2022-07-30 14:23:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 30 ms / 1,000 ms
コード長 915 bytes
コンパイル時間 273 ms
実行使用メモリ 8,388 KB
スコア 4,521,707
最終ジャッジ日時 2022-07-30 14:23:12
合計ジャッジ時間 2,619 ms
ジャッジサーバーID
(参考情報)
judge12 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
8,264 KB
testcase_01 AC 26 ms
8,232 KB
testcase_02 AC 25 ms
8,388 KB
testcase_03 AC 26 ms
8,228 KB
testcase_04 AC 26 ms
8,176 KB
testcase_05 AC 26 ms
8,232 KB
testcase_06 AC 27 ms
8,172 KB
testcase_07 AC 27 ms
8,172 KB
testcase_08 AC 27 ms
8,136 KB
testcase_09 AC 26 ms
8,264 KB
testcase_10 AC 27 ms
8,228 KB
testcase_11 AC 27 ms
8,380 KB
testcase_12 AC 26 ms
8,140 KB
testcase_13 AC 27 ms
8,304 KB
testcase_14 AC 26 ms
8,264 KB
testcase_15 AC 27 ms
8,176 KB
testcase_16 AC 26 ms
8,308 KB
testcase_17 AC 26 ms
8,252 KB
testcase_18 AC 26 ms
8,148 KB
testcase_19 AC 27 ms
8,148 KB
testcase_20 AC 25 ms
8,276 KB
testcase_21 AC 27 ms
8,300 KB
testcase_22 AC 26 ms
8,336 KB
testcase_23 AC 29 ms
8,268 KB
testcase_24 AC 29 ms
8,332 KB
testcase_25 AC 29 ms
8,220 KB
testcase_26 AC 30 ms
8,272 KB
testcase_27 AC 28 ms
8,268 KB
testcase_28 AC 27 ms
8,148 KB
testcase_29 AC 29 ms
8,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def greedy(cities,current_city,dist):
    N = len(cities)
    unvisited_cities = set(range(0, N))
    tour = [current_city]
    unvisited_cities.remove(current_city)

    while unvisited_cities:
        next_city = min(unvisited_cities,
                        key=lambda city: dist[current_city][city])
        unvisited_cities.remove(next_city)
        tour.append(next_city)
        current_city = next_city
    return tour,dist

# ====================
N, M = map(int, input().split())
planet = [tuple(map(int, input().split())) for _ in range(N)]
dist = [[0 for _ in range(N)] for _ in range(N)]
for i in range(N):
    for j in range(N):
        p1 = planet[i]
        p2 = planet[j]
        D = (p1[0] - p2[0]) ** 2 + (p1[1] - p2[1]) ** 2
        dist[i][j] = D
tour, dis = greedy(planet, 0, dist)
for _ in range(M):print(*planet[0])
print(len(tour)+1)
for i in range(len(tour)):print(1, tour[i]+1)
print(1, 1)
0