結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー 👑 NachiaNachia
提出日時 2021-01-22 21:34:38
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 4,987 ms
コンパイル使用メモリ 202,696 KB
実行使用メモリ 5,528 KB
最終ジャッジ日時 2023-08-27 17:45:07
合計ジャッジ時間 12,798 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 2 ms
4,384 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 3 ms
4,376 KB
testcase_25 AC 8 ms
5,404 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 9 ms
5,356 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 2 ms
4,376 KB
testcase_33 AC 8 ms
5,420 KB
testcase_34 AC 8 ms
5,432 KB
testcase_35 AC 9 ms
5,388 KB
testcase_36 AC 8 ms
5,416 KB
testcase_37 AC 8 ms
5,376 KB
testcase_38 AC 8 ms
5,356 KB
testcase_39 AC 8 ms
5,528 KB
testcase_40 AC 8 ms
5,340 KB
testcase_41 AC 8 ms
5,388 KB
testcase_42 AC 7 ms
5,416 KB
testcase_43 AC 2 ms
4,380 KB
testcase_44 AC 8 ms
5,396 KB
testcase_45 AC 2 ms
4,380 KB
testcase_46 AC 8 ms
5,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N;
LL dp[1<<18];

int main() {
  cin>>N;
  rep(i,1<<N) dp[i]=0;
  rep(i,N){ int a; cin>>a; dp[1<<i]=a; }
  rep(i,N) rep(j,N){ int b; cin>>b; if(i<j) dp[(1<<i)|(1<<j)]=b; }
  rep(i,N) rep(j,1<<N) if(~j&(1<<i)) dp[j|(1<<i)]+=dp[j];
  pair<LL,int> ans={0,0}; rep(i,1<<N) ans=max(ans,{dp[i],i});
  cout<<ans.first<<endl;
  vector<int> L; rep(i,N) if((ans.second>>i)&1) L.push_back(i+1);
  rep(i,L.size()){ if(i) cout<<" "; cout<<L[i]; } cout<<endl;
  return 0;
}
0