結果

問題 No.519 アイドルユニット
ユーザー ikdikd
提出日時 2017-11-27 17:16:19
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 700 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 102,616 KB
実行使用メモリ 68,760 KB
最終ジャッジ日時 2024-06-12 22:42:51
合計ジャッジ時間 2,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
68,224 KB
testcase_01 AC 72 ms
68,760 KB
testcase_02 AC 21 ms
19,084 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 7 ms
7,496 KB
testcase_25 AC 7 ms
6,944 KB
testcase_26 AC 7 ms
6,940 KB
testcase_27 AC 8 ms
7,944 KB
testcase_28 AC 7 ms
7,832 KB
testcase_29 AC 71 ms
68,032 KB
testcase_30 AC 71 ms
68,188 KB
testcase_31 AC 72 ms
68,176 KB
testcase_32 AC 71 ms
68,028 KB
testcase_33 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main(){
  import std.stdio, std.string, std.conv, std.algorithm;

  int n; rd(n);
  auto a=new int[][](n, n);
  foreach(i; 0..n) a[i]=readln.split.to!(int[]);

  auto rec=new int[](1<<n);
  fill(rec, -1);
  int fun(int bit){
    if(bit==0) return 0;
    if(rec[bit]>=0) return rec[bit];
    int ret=0;
    foreach(i; 0..n)if(bit&(1<<i)){
      foreach(j; (i+1)..n)if(bit&(1<<j)){
        ret=max(ret, fun(bit^(1<<i)^(1<<j))+a[i][j]);
      }
      break;
    }
    return rec[bit]=ret;
  }

  writeln(fun((1<<n)-1));
}

void rd(T...)(ref T x){
  import std.stdio, std.string, std.conv;
  auto l=readln.split;
  assert(l.length==x.length);
  foreach(i, ref e; x){
    e=l[i].to!(typeof(e));
  }
}
0