結果
問題 | No.771 しおり |
ユーザー | sjiki |
提出日時 | 2021-09-26 23:42:50 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 520 bytes |
コンパイル時間 | 138 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 133,248 KB |
最終ジャッジ日時 | 2024-07-05 16:59:16 |
合計ジャッジ時間 | 13,584 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 39 ms
51,968 KB |
testcase_03 | WA | - |
testcase_04 | AC | 36 ms
51,840 KB |
testcase_05 | WA | - |
testcase_06 | AC | 35 ms
51,840 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 35 ms
51,712 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 36 ms
51,712 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 842 ms
132,736 KB |
ソースコード
inf=10**16 n = int(input()) xy = [] for _ in range(n): xi, yi = list(map(int, input().split())) xy.append([xi, yi]) def dist(i,j): a,b=xy[i] p,q=xy[j] return abs(b-a)+p dp=[[-inf]*n for _ in range(1<<n)] dp[0][0]=0 def chmin(bit,i,val): if val>dp[bit][i]:dp[bit][i]=val for bit in range(1<<n): for i in range(n): pre=dp[bit][i] if pre==-inf:continue for j in range(n): if bit>>j&1:continue chmin(bit|1<<j,j,dist(i,j)) print(dp[-1][0])