結果

問題 No.519 アイドルユニット
ユーザー どららどらら
提出日時 2017-05-29 00:12:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 1,000 ms
コード長 754 bytes
コンパイル時間 1,488 ms
コンパイル使用メモリ 166,852 KB
実行使用メモリ 134,656 KB
最終ジャッジ日時 2024-10-03 03:53:49
合計ジャッジ時間 4,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
134,500 KB
testcase_01 AC 80 ms
134,528 KB
testcase_02 AC 56 ms
134,524 KB
testcase_03 AC 49 ms
134,496 KB
testcase_04 AC 56 ms
134,600 KB
testcase_05 AC 47 ms
134,528 KB
testcase_06 AC 48 ms
134,528 KB
testcase_07 AC 48 ms
134,528 KB
testcase_08 AC 47 ms
134,400 KB
testcase_09 AC 46 ms
134,400 KB
testcase_10 AC 46 ms
134,492 KB
testcase_11 AC 47 ms
134,624 KB
testcase_12 AC 50 ms
134,572 KB
testcase_13 AC 47 ms
134,480 KB
testcase_14 AC 48 ms
134,488 KB
testcase_15 AC 48 ms
134,656 KB
testcase_16 AC 48 ms
134,400 KB
testcase_17 AC 47 ms
134,400 KB
testcase_18 AC 47 ms
134,528 KB
testcase_19 AC 47 ms
134,528 KB
testcase_20 AC 55 ms
134,528 KB
testcase_21 AC 47 ms
134,488 KB
testcase_22 AC 46 ms
134,656 KB
testcase_23 AC 46 ms
134,528 KB
testcase_24 AC 49 ms
134,528 KB
testcase_25 AC 48 ms
134,528 KB
testcase_26 AC 49 ms
134,520 KB
testcase_27 AC 48 ms
134,492 KB
testcase_28 AC 49 ms
134,528 KB
testcase_29 AC 78 ms
134,528 KB
testcase_30 AC 78 ms
134,528 KB
testcase_31 AC 77 ms
134,400 KB
testcase_32 AC 78 ms
134,528 KB
testcase_33 AC 46 ms
134,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

int N;
int cost[30][30];

int dp[1<<25];


int main(){
  cin >> N;
  rep(i,N){
    rep(j,N){
      cin >> cost[i][j];
    }
  }

  rep(i,1<<25) dp[i] = -1;
  dp[0] = 0;

  rep(i,1<<N){
    if(dp[i] < 0) continue;

    rep(j,N) if(((i>>j)&1) == 0){
      REP(k,j+1,N) if(((i>>k)&1) == 0){
        int ii = i | (1<<j) | (1<<k);
        dp[ii] = max(dp[ii], cost[j][k] + dp[i]);
      }
      break;
    }
  }
  cout << dp[(1<<N)-1] << endl;
  return 0;
}
0