結果
問題 | No.2955 Pizza Delivery Plan |
ユーザー | zawakasu |
提出日時 | 2024-11-08 22:04:13 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,768 bytes |
コンパイル時間 | 1,221 ms |
コンパイル使用メモリ | 115,092 KB |
実行使用メモリ | 7,836 KB |
最終ジャッジ日時 | 2024-11-08 22:04:37 |
合計ジャッジ時間 | 8,893 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
#include <iostream> #include <iomanip> #include <cassert> #include <vector> #include <cmath> #include <bit> int main() { std::cin.tie(nullptr)->sync_with_stdio(false); int N, K; std::cin >> N >> K; std::vector<int> X(N), Y(N); for (int i{} ; i < N ; i++) std::cin >> X[i] >> Y[i]; const long double INF{(long double)1e18}; std::vector dp(N, std::vector<long double>(1 << N, INF)); for (int i{} ; i < N ; i++) { dp[i][1 << i] = sqrtl(X[i] * X[i] + Y[i] * Y[i]); } for (int bit{} ; bit < (1 << N) ; bit++) { for (int s{} ; s < N ; s++) if (bit & (1 << s)) { for (int t{} ; t < N ; t++) if (!(bit & (1 << t))) { if (dp[s][bit] > 1e15) continue; int dx{X[s] - X[t]}, dy{Y[s] - Y[t]}; dp[t][bit | (1 << t)] = std::min(dp[t][bit | (1 << t)], dp[s][bit] + sqrtl(dx * dx + dy * dy)); } } } std::vector<long double> cost(1 << N, INF); cost[0] = 0; for (int bit{} ; bit < (1 << N) ; bit++) for (int i{} ; i < N ; i++) if (bit & (1 << i)) { if (dp[i][bit] > 1e15) continue; cost[bit] = std::min(cost[bit], dp[i][bit] + sqrtl(X[i] * X[i] + Y[i] * Y[i])); } std::vector<long double> ep(1 << N, INF); ep[0] = 0; int all{(1 << N) - 1}; for (int bit{} ; bit < (1 << N) ; bit++) { assert(ep[bit] < 1e15); int can{all ^ bit}; for (int mask{can} ; mask ; mask = (mask - 1) & can) { if ((int)std::popcount((unsigned)mask) <= K) { assert((bit & mask) == 0); ep[bit | mask] = std::min(ep[bit | mask], ep[bit] + cost[mask]); } } } std::cout << std::fixed << std::setprecision(8) << ep[all] << '\n'; }