結果

問題 No.562 超高速一人かるた small
ユーザー ikdikd
提出日時 2017-08-26 03:56:08
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,127 ms / 3,000 ms
コード長 987 bytes
コンパイル時間 957 ms
コンパイル使用メモリ 105,436 KB
実行使用メモリ 11,628 KB
最終ジャッジ日時 2024-06-12 21:48:14
合計ジャッジ時間 14,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 118 ms
6,940 KB
testcase_09 AC 1,038 ms
11,628 KB
testcase_10 AC 235 ms
6,940 KB
testcase_11 AC 520 ms
6,948 KB
testcase_12 AC 112 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 1,127 ms
10,592 KB
testcase_15 AC 1,035 ms
11,268 KB
testcase_16 AC 1,088 ms
10,432 KB
testcase_17 AC 1,057 ms
11,540 KB
testcase_18 AC 1,052 ms
10,616 KB
testcase_19 AC 1,067 ms
11,200 KB
testcase_20 AC 1,025 ms
11,480 KB
testcase_21 AC 1,059 ms
10,600 KB
testcase_22 AC 1,101 ms
11,572 KB
testcase_23 AC 1,042 ms
10,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  int n; rd(n);
  auto ss=new string[](n);
  foreach(i; 0..n) rd(ss[i]);

  sort(ss);
  auto mm=new int[][](n, n);
  foreach(i; 0..n)foreach(j; 0..i){
    int k=0;
    while(k<ss[i].length && k<ss[j].length
          && ss[i][k]==ss[j][k]) k++;
    mm[i][j]=mm[j][i]=k;
  }

  long mod=10^^9+7;
  auto f=new long[](n+1); f[0]=1;
  foreach(i; 1..f.length) f[i]=i*f[i-1]%mod;

  auto ex=new long[](n+1);
  auto dp=new long[](1<<n); // 1->remaining, 0->used
  foreach_reverse(i; 0..(1<<n)){
    auto m=0;
    foreach(j; 0..n)if(i>>j&1) m++;
    foreach(j; 0..n)if(i>>j&1){
      auto c=0;
      foreach(k; 0..n)if(i>>k&1) c=max(c, mm[j][k]);
      (dp[i^(1<<j)]+=dp[i]+(c+1)*f[n-m])%=mod;
    }
    (ex[n-m]+=dp[i])%=mod;
  }

  foreach(k; 1..ex.length) writeln(ex[k]);

}

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