結果
問題 | No.134 走れ!サブロー君 |
ユーザー | takune1024 |
提出日時 | 2017-12-01 01:24:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,019 bytes |
コンパイル時間 | 563 ms |
コンパイル使用メモリ | 67,156 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-05-05 16:37:21 |
合計ジャッジ時間 | 1,323 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <cmath> #include <cstdlib> #include <vector> #include <queue> #include <utility> using namespace std; typedef pair<int, int> P; typedef long long ll; #define For(i, a, b) for(int i = (a); i < (b); i++) #define Rep(i, n) For(i, 0, (n)) const double inf = 1e15; const int mod = 1000000007; double dp[1 << 15][20]; int x[20], y[20]; double w[20]; double all_w; int dis[20][20]; int main(){ int a, b; cin >> a >> b; int n; cin >> n; x[0] = a; y[0] = b; For(i, 1, n + 1){ cin >> x[i] >> y[i] >> w[i]; all_w += w[i]; } n += 1; Rep(i, 1 << n) Rep(j, n) dp[i][j] = inf; dp[0][0] = 0; Rep(i, 1 << n) Rep(j, n) if(dp[i][j] < inf){ double now_w = all_w; Rep(k, n) if(i & 1 << k) now_w -= w[k]; Rep(k, n) if(!(i & 1 << k)){ double dis = abs(x[j] - x[k]) + abs(y[j] - y[k]); double add_dis = dis * (now_w + 100.0) / 120; dp[i | 1 << k][k] = min(dp[i | 1 << k][k], dp[i][j] + add_dis + w[k]); } } cout << dp[(1 << n) - 1][0] << endl; return 0; }