結果
問題 | No.519 アイドルユニット |
ユーザー |
![]() |
提出日時 | 2019-03-02 23:00:37 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 674 bytes |
コンパイル時間 | 1,781 ms |
コンパイル使用メモリ | 194,852 KB |
最終ジャッジ日時 | 2025-01-06 21:51:08 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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 HEREsigned 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<n;i++)if((~b>>i)&1)if(u!=i) chmax(dp[b|(1<<i)|(1<<u)],dp[b]+f[u][i]);}cout<<dp[s-1]<<endl;return 0;}