結果
| 問題 |
No.519 アイドルユニット
|
| コンテスト | |
| ユーザー |
beet
|
| 提出日時 | 2019-03-02 23:07:38 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 769 bytes |
| コンパイル時間 | 2,095 ms |
| コンパイル使用メモリ | 196,352 KB |
| 最終ジャッジ日時 | 2025-01-06 21:52:17 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 WA * 27 |
ソースコード
#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(__builtin_popcount(b)+2>12) 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=0;
for(Int b=0;b<s;b++)
chmax(ans,dp[b]+dp[(s-1)^b]);
cout<<ans<<endl;
return 0;
}
beet