結果

問題 No.519 アイドルユニット
ユーザー goodbatongoodbaton
提出日時 2017-05-28 22:45:45
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,572 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 81,432 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2024-09-21 15:42:35
合計ジャッジ時間 5,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 WA -
testcase_03 AC 15 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 15 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 16 ms
5,376 KB
testcase_15 AC 16 ms
5,376 KB
testcase_16 AC 16 ms
5,376 KB
testcase_17 AC 15 ms
5,376 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 16 ms
5,376 KB
testcase_20 AC 17 ms
5,376 KB
testcase_21 AC 16 ms
5,376 KB
testcase_22 AC 16 ms
5,376 KB
testcase_23 AC 15 ms
5,376 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:35:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   35 |   scanf("%d",&n);
      |   ~~~~~^~~~~~~~~
main.cpp:39:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   39 |       scanf("%d",f[i]+j);
      |       ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>

#include <functional>
#include <cassert>

typedef long long ll;
using namespace std;

#define debug(x) cerr << #x << " = " << (x) << endl;


#define mod 1000000007 //1e9+7(prime number)
#define INF 1000000000 //1e9
#define LLINF 2000000000000000000LL //2e18
#define SIZE 30

int dp[1<<24];

int main(){
  int n;
  int f[SIZE][SIZE];
  
  scanf("%d",&n);

  for(int i=0;i<n;i++){
    for(int j=0;j<n;j++){
      scanf("%d",f[i]+j);
    }
  }

  for(int i=0;i<n-n/4*2;i+=2){
    int s[26];
    int q[13], p = 0;
    
    for(int j=0;j<n;j++){
      s[n-1-j] = (j < i);
      if(j >= i){
        q[p++] = n-1-j;
      }
    }
    
    do{
      int t = 0;
      
      for(int j=0;j<n;j++){
        if(s[j]) t += 1 << j;
      }
      
      for(int j=0;j<p;j++){
        if((1<<q[j]) & t) continue;
        for(int k=j+1;k<p;k++){
          if((1<<q[k]) & t) continue;
          
          dp[t + (1<<q[j]) + (1<<q[k])] = max(dp[t + (1<<q[j]) + (1<<q[k])], dp[t] + f[q[j]][q[k]]);
          
        }
      }
      
    }while(next_permutation(s,s+n));
    
  }

  int s[26], ans = 0;
  
  for(int i=0;i<n;i++){
    s[n-1-i] = (i < n/4*2);
  }
  
  do{
    int t = 0;

    for(int i=0;i<n;i++){
      if(s[i]) t += 1 << i;
    }

    ans = max(ans, dp[t] + dp[((1<<n)-1)^(t)]);

  }while(next_permutation(s,s+n));
   
  printf("%d\n",ans);
  
  return 0;
}
0