結果
問題 | No.519 アイドルユニット |
ユーザー | HIcoder |
提出日時 | 2024-08-13 23:13:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,400 bytes |
コンパイル時間 | 2,026 ms |
コンパイル使用メモリ | 134,544 KB |
実行使用メモリ | 1,348,368 KB |
最終ジャッジ日時 | 2024-08-13 23:13:30 |
合計ジャッジ時間 | 6,286 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
#include<iostream> #include<string> #include<queue> #include<vector> #include<cassert> #include<random> #include<set> #include<map> #include<cassert> #include<unordered_map> #include<bitset> #include<numeric> #include<algorithm> using namespace std; typedef long long ll; const int inf=1<<30; const ll INF=1LL<<62; typedef pair<int,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; int main(){ int N; cin>>N; vector<vector<int>> F(N,vector<int>(N)); for(int i=0;i<N;i++){ for(int j=0;j<N;j++){ cin>>F[i][j]; } } unordered_map<int,int> ump; for(int S=0;S<(1<<N);S++){ ump[S]=-1; for(int i=0;i<N;i++){ if((S>>i)&1) continue; ump[S]=i; break; } } /* vector<int> dp(1<<N,-inf); dp[0]=0; for(int S=0;S<(1<<N);S++){ int idx=ump[S]; if(idx==-1) continue; for(int j=idx+1;j<N;j++){ if(S>>j&1) continue; dp[S|(1<<idx)|(1<<j)]=max(dp[S|(1<<idx)|(1<<j)],dp[S]+F[idx][j]); } } */ map<int,int> dp; dp[0]=0; for(auto [S,v]:dp){ int idx=ump[S]; if(idx==-1) continue; for(int j=idx+1;j<N;j++){ if((S>>j)&1) continue; dp[S|(1<<idx)|(1<<j)]=max(dp[S|(1<<idx)|(1<<j)],dp[S]+F[idx][j]); } } int all=(1<<N)-1; cout<<dp[all]<<endl; }