結果

問題 No.2955 Pizza Delivery Plan
ユーザー mkawa2mkawa2
提出日時 2024-11-08 23:00:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,722 ms / 2,000 ms
コード長 1,681 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 152,036 KB
最終ジャッジ日時 2024-11-08 23:01:31
合計ジャッジ時間 30,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 39 ms
52,992 KB
testcase_02 AC 44 ms
60,672 KB
testcase_03 AC 49 ms
63,616 KB
testcase_04 AC 62 ms
68,352 KB
testcase_05 AC 44 ms
52,992 KB
testcase_06 AC 44 ms
60,800 KB
testcase_07 AC 40 ms
53,120 KB
testcase_08 AC 317 ms
103,040 KB
testcase_09 AC 330 ms
103,168 KB
testcase_10 AC 573 ms
106,600 KB
testcase_11 AC 843 ms
112,056 KB
testcase_12 AC 940 ms
116,068 KB
testcase_13 AC 1,140 ms
121,336 KB
testcase_14 AC 1,335 ms
126,372 KB
testcase_15 AC 1,506 ms
130,044 KB
testcase_16 AC 1,580 ms
133,868 KB
testcase_17 AC 1,647 ms
138,204 KB
testcase_18 AC 1,676 ms
140,992 KB
testcase_19 AC 1,668 ms
144,284 KB
testcase_20 AC 1,664 ms
146,756 KB
testcase_21 AC 1,702 ms
148,904 KB
testcase_22 AC 1,716 ms
151,984 KB
testcase_23 AC 1,682 ms
151,592 KB
testcase_24 AC 1,706 ms
151,916 KB
testcase_25 AC 974 ms
116,520 KB
testcase_26 AC 834 ms
111,920 KB
testcase_27 AC 574 ms
106,572 KB
testcase_28 AC 1,638 ms
141,596 KB
testcase_29 AC 1,596 ms
144,248 KB
testcase_30 AC 1,722 ms
152,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

def norm(i, j):
    x, y = xy[i]
    p, q = xy[j]
    return ((x-p)**2+(y-q)**2)**0.5

n, k = LI()
xy = LLI(n)
dist = [[[inf]*k for _ in range(n)] for _ in range(1<<n)]
hp = []
for i, (x, y) in enumerate(xy):
    s = 1 << i
    d = (x**2+y**2)**0.5
    dist[s][i][k-1]=d
xy.append([0, 0])
ans=inf
for s in range(1,1<<n):
    for i in range(n):
        for r in range(k):
            d=dist[s][i][r]
            if d==inf:continue
            for j in range(n):
                if s >> j & 1: continue
                ns = s | 1 << j
                nd = d+norm(i, n)+norm(j, n)
                if nd < dist[ns][j][k-1]:
                    dist[ns][j][k-1] = nd
                if r:
                    nd = d+norm(i, j)
                    if nd < dist[ns][j][r-1]:
                        dist[ns][j][r-1] = nd

for i in range(n):
    for r in range(k):
        ans=min(ans,dist[-1][i][r]+norm(i,n))
print(ans)
0