結果
問題 | No.134 走れ!サブロー君 |
ユーザー | Kutimoti_T |
提出日時 | 2018-03-06 14:50:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,096 bytes |
コンパイル時間 | 560 ms |
コンパイル使用メモリ | 82,768 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-18 22:48:10 |
合計ジャッジ時間 | 1,168 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 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 | WA | - |
testcase_14 | WA | - |
ソースコード
#include <iostream> #include <iomanip> #include <string> #include <vector> #include <algorithm> #include <queue> #include <set> #include <map> #include <cmath> using namespace std; typedef long long i64; typedef long double ld; typedef pair<i64, i64> P; #define rep(i, s, e) for (int i = (s); i <= (e); i++) ld sx, sy; int n; ld x[13], y[13], w[13]; ld dp[(1 << 13)]; ld dist(ld x1, ld y1, ld x2, ld y2) { return abs(x1 - x2) + abs(y1 - y2); } int main() { cin >> sx >> sy; cin >> n; rep(i, 0, n - 1) cin >> x[i] >> y[i] >> w[i]; fill(dp, dp + (1 << 13), 1e9); ld w_sum = 0; rep(i, 0, n - 1) w_sum += w[i]; rep(i, 1, (1 << n) - 1) { if (__builtin_popcount(i) == 1) { rep(j, 0, n - 1) { if (i & (1 << j)) { dp[i] = dist(x[j], y[j], sx, sy) * (w_sum + 100) / 120 + w[j]; break; } } } else { rep(j, 0, n - 1) { if (i & (1 << j)) { ld weight = 0; int sub = i & ~(1 << j); rep(k, 0, n - 1) { if (!(sub & (1 << k))) { weight += w[k]; } } rep(k, 0, n - 1) { if ((sub & (1 << k))) { ld d = dist(x[j], y[j], x[k], y[k]); ld last = 0; if (i == (1 << n) - 1) { last += dist(x[j], y[j], sx, sy) * 100 / 120; } dp[i] = min(dp[i], dp[sub] + d * (weight + 100) / 120 + w[j] + last); } } } } } } cout << fixed << setprecision(10); cout << dp[(1 << n) - 1] << endl; }