結果
問題 | No.845 最長の切符 |
ユーザー | ikd |
提出日時 | 2019-06-28 22:43:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 678 ms |
コンパイル使用メモリ | 74,800 KB |
実行使用メモリ | 9,984 KB |
最終ジャッジ日時 | 2024-07-02 05:01:08 |
合計ジャッジ時間 | 2,180 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
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 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 42 ms
9,984 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 47 ms
9,856 KB |
testcase_29 | WA | - |
ソースコード
#include <algorithm> #include <iostream> #include <vector> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) void chmin(int &a, int b) { if (a > b) a = b; } void chmax(int &a, int b) { if (a < b) a = b; } int main() { int n, m; cin >> n >> m; const int inf = 1000000000; vector<vector<int>> d(n, vector<int>(n, inf)); rep(i, n) d[i][i] = 0; rep(i, m) { int a, b, c; cin >> a >> b >> c; a--; b--; chmin(d[a][b], c); chmin(d[b][a], c); } vector<vector<int>> dp(1 << n, vector<int>(n, 0)); rep(bits, 1 << n) { rep(v, n) { if (bits >> v & 1) { rep(w, n) { if (!(bits >> w & 1) and d[v][w] < inf) { chmax(dp[bits ^ (1 << w)][w], dp[bits][v] + d[v][w]); } } } } } int ans = 0; rep(bits, 1 << n) { rep(v, n) { if (bits >> v & 1) { chmax(ans, dp[bits][v]); } } } cout << ans << endl; return 0; }