結果

問題 No.2955 Pizza Delivery Plan
ユーザー ねしんねしん
提出日時 2024-11-08 22:51:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 946 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 137,728 KB
最終ジャッジ日時 2024-11-08 22:51:27
合計ジャッジ時間 21,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,984 KB
testcase_01 AC 43 ms
52,736 KB
testcase_02 AC 59 ms
63,616 KB
testcase_03 AC 76 ms
69,888 KB
testcase_04 AC 121 ms
76,800 KB
testcase_05 AC 46 ms
54,016 KB
testcase_06 AC 59 ms
63,872 KB
testcase_07 AC 45 ms
53,376 KB
testcase_08 AC 448 ms
82,896 KB
testcase_09 AC 443 ms
82,712 KB
testcase_10 AC 744 ms
86,596 KB
testcase_11 AC 967 ms
90,684 KB
testcase_12 AC 1,203 ms
96,336 KB
testcase_13 AC 1,559 ms
103,348 KB
testcase_14 AC 1,674 ms
110,864 KB
testcase_15 AC 1,930 ms
117,908 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=list(map(int,input().split()))
M=[]
def dist(i,j):
  return ((M[i][0]-M[j][0])**2+(M[i][1]-M[j][1])**2)**(0.5)
for i in range(N):
  x,y=list(map(int,input().split()))
  M.append((x,y))
M.append((0,0))
dp=[]
for i in range(N+1):
  p=[]
  for k in range(K+1):
    p.append([10**18]*(2**N))
  dp.append(p)
dp[N][K][0]=0#dp[どこにいるかNならピザや][何枚あるか][どこ尋ねたか]
for i in range(2**N):
  for j in range(N+1):
    for k in range(K+1):
      if j!=N:
        if k==0:
          dp[N][K][i]=min(dp[N][K][i],dp[j][k][i]+dist(j,N))
        else:
          dp[N][K][i]=min(dp[N][K][i],dp[j][k][i]+dist(j,N))
          for l in range(N):
            if 2**j&i!=0 and 2**l&i==0:
              dp[l][k-1][i|2**l]=min(dp[l][k-1][i|2**l],dp[j][k][i]+dist(j,l))
      else:
        for l in range(N):
          if 2**l&i==0:
            dp[l][k-1][i|2**l]=min(dp[l][k-1][i|2**l],dp[j][k][i]+dist(j,l))
print(dp[N][K][2**N-1])
0