結果
問題 | No.845 最長の切符 |
ユーザー | ok |
提出日時 | 2019-06-28 23:58:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,161 bytes |
コンパイル時間 | 575 ms |
コンパイル使用メモリ | 73,176 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-07-02 05:14:55 |
合計ジャッジ時間 | 1,896 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
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 | - |
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 | - |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> using namespace std; #define int long long #define rep(i,n) for(int i = 0; i < (n); i++) #define endl "\n" const long long INF = (long long)1e18; const long long MOD = (long long)1e9 + 7; string yn(bool f){return f?"Yes":"No";} string YN(bool f){return f?"YES":"NO";} #define MAX 20 signed main(){ cin.tie(0); ios::sync_with_stdio(false); cout<<fixed<<setprecision(10); int N, M; int a, b, c; int ans = 0; static int cost[MAX][MAX]; static int dp[MAX][(1<<17)]; cin>>N>>M; for(int i = 0; i < M; i++){ cin>>a>>b>>c; a--, b--; cost[a][b] = max(cost[a][b], c); cost[b][a] = max(cost[b][a], c); } for(int i = 1; i < (1<<N); i++){ for(int j = 0; j < N; j++){ if(!(i&(1<<j))) continue; int bit = i&(~(1<<j)); int maximum = -INF; for(int k = 0; k < N; k++){ if(!(bit&(1<<k))) continue; if(!cost[k][j]) continue; if(dp[k][bit] == -INF) continue; maximum = max(maximum, dp[k][bit] + cost[k][j]); } dp[j][i] = maximum; ans = max(maximum, ans); } } cout<<ans<<endl; return 0; }