結果
問題 |
No.519 アイドルユニット
|
ユーザー |
![]() |
提出日時 | 2019-03-02 23:08:57 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 61 ms / 1,000 ms |
コード長 | 697 bytes |
コンパイル時間 | 1,665 ms |
コンパイル使用メモリ | 194,800 KB |
最終ジャッジ日時 | 2025-01-06 21:52:26 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#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 signed main(){ Int n; cin>>n; Int f[30][30]; for(Int i=0;i<n;i++) for(Int j=0;j<n;j++) cin>>f[i][j]; Int s=1<<n; const Int INF = 1e15; vector<Int> dp(s,-INF); dp[0]=0; for(Int b=0;b<s;b++){ if(dp[b]<0) continue; Int u=0; for(Int i=0;i<n;i++) if((~b>>i)&1) u=i; for(Int i=0;i<u;i++) if((~b>>i)&1) chmax(dp[b|(1<<i)|(1<<u)],dp[b]+f[u][i]); } Int ans=dp[s-1]; cout<<ans<<endl; return 0; }