結果
| 問題 |
No.519 アイドルユニット
|
| コンテスト | |
| ユーザー |
beet
|
| 提出日時 | 2019-03-02 23:02:05 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 657 bytes |
| コンパイル時間 | 2,297 ms |
| コンパイル使用メモリ | 195,196 KB |
| 最終ジャッジ日時 | 2025-01-06 21:51:33 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 28 TLE * 6 |
ソースコード
#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 = 1e9;
vector<Int> dp(s,-INF);
dp[0]=0;
for(Int b=0;b<s;b++){
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]);
}
cout<<dp[s-1]<<endl;
return 0;
}
beet