結果
問題 | No.845 最長の切符 |
ユーザー | ok |
提出日時 | 2019-06-29 00:01:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 55 ms / 3,000 ms |
コード長 | 1,158 bytes |
コンパイル時間 | 606 ms |
コンパイル使用メモリ | 73,264 KB |
実行使用メモリ | 20,384 KB |
最終ジャッジ日時 | 2024-07-02 05:15:53 |
合計ジャッジ時間 | 1,920 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
7,516 KB |
testcase_01 | AC | 3 ms
9,568 KB |
testcase_02 | AC | 4 ms
11,620 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 3 ms
7,524 KB |
testcase_05 | AC | 3 ms
7,524 KB |
testcase_06 | AC | 2 ms
7,520 KB |
testcase_07 | AC | 2 ms
7,520 KB |
testcase_08 | AC | 4 ms
11,620 KB |
testcase_09 | AC | 3 ms
9,572 KB |
testcase_10 | AC | 5 ms
13,692 KB |
testcase_11 | AC | 3 ms
11,624 KB |
testcase_12 | AC | 4 ms
11,756 KB |
testcase_13 | AC | 3 ms
9,568 KB |
testcase_14 | AC | 4 ms
11,616 KB |
testcase_15 | AC | 13 ms
15,908 KB |
testcase_16 | AC | 44 ms
18,792 KB |
testcase_17 | AC | 12 ms
15,912 KB |
testcase_18 | AC | 22 ms
18,280 KB |
testcase_19 | AC | 9 ms
15,784 KB |
testcase_20 | AC | 47 ms
20,324 KB |
testcase_21 | AC | 55 ms
20,384 KB |
testcase_22 | AC | 13 ms
17,704 KB |
testcase_23 | AC | 6 ms
13,688 KB |
testcase_24 | AC | 44 ms
20,196 KB |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | AC | 46 ms
20,316 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 48 ms
18,792 KB |
testcase_29 | AC | 2 ms
6,940 KB |
ソースコード
#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 = 0; for(int k = 0; k < N; k++){ if(!(bit&(1<<k))) continue; if(!cost[k][j]) continue; // if(dp[k][bit] <= 0) continue; maximum = max(maximum, dp[k][bit] + cost[k][j]); } dp[j][i] = maximum; ans = max(maximum, ans); } } cout<<ans<<endl; return 0; }