結果

問題 No.845 最長の切符
ユーザー beetbeet
提出日時 2019-06-28 21:33:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 3,000 ms
コード長 863 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 200,424 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-07-02 04:26:15
合計ジャッジ時間 3,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,520 KB
testcase_01 AC 8 ms
11,648 KB
testcase_02 AC 8 ms
11,520 KB
testcase_03 AC 8 ms
11,520 KB
testcase_04 AC 8 ms
11,648 KB
testcase_05 AC 8 ms
11,520 KB
testcase_06 AC 8 ms
11,520 KB
testcase_07 AC 8 ms
11,520 KB
testcase_08 AC 8 ms
11,520 KB
testcase_09 AC 8 ms
11,648 KB
testcase_10 AC 9 ms
11,520 KB
testcase_11 AC 8 ms
11,648 KB
testcase_12 AC 8 ms
11,520 KB
testcase_13 AC 8 ms
11,648 KB
testcase_14 AC 8 ms
11,520 KB
testcase_15 AC 19 ms
11,520 KB
testcase_16 AC 54 ms
11,648 KB
testcase_17 AC 18 ms
11,520 KB
testcase_18 AC 29 ms
11,648 KB
testcase_19 AC 13 ms
11,648 KB
testcase_20 AC 57 ms
11,520 KB
testcase_21 AC 60 ms
11,520 KB
testcase_22 AC 17 ms
11,520 KB
testcase_23 AC 10 ms
11,520 KB
testcase_24 AC 54 ms
11,648 KB
testcase_25 AC 7 ms
11,520 KB
testcase_26 AC 9 ms
11,520 KB
testcase_27 AC 8 ms
11,648 KB
testcase_28 AC 9 ms
11,520 KB
testcase_29 AC 9 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
Int dp[16][1<<16];
signed main(){
  Int n,m;
  cin>>n>>m;
  Int es[20][20];
  memset(es,-1,sizeof(es));
  for(Int i=0;i<m;i++){
    Int a,b,c;
    cin>>a>>b>>c;
    a--;b--;
    chmax(es[a][b],c);
    chmax(es[b][a],c);
  }
  Int ans=0;
  Int s=1<<n;
  memset(dp,-1,sizeof(dp));
  for(Int i=0;i<n;i++) dp[i][1<<i]=0;
  for(Int b=0;b<s;b++){
    for(Int i=0;i<n;i++){
      if(dp[i][b]<0) continue;
      chmax(ans,dp[i][b]);
      for(Int j=0;j<n;j++){
        if((b>>j)&1) continue;
        if(es[i][j]<0) continue;
        chmax(dp[j][b|(1<<j)],dp[i][b]+es[i][j]);
      }
    }
  }
  cout<<ans<<endl;
  return 0;
}
0