結果
問題 | No.562 超高速一人かるた small |
ユーザー | ikd |
提出日時 | 2017-08-26 03:44:20 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 958 ms / 3,000 ms |
コード長 | 1,070 bytes |
コンパイル時間 | 692 ms |
コンパイル使用メモリ | 104,692 KB |
実行使用メモリ | 12,992 KB |
最終ジャッジ日時 | 2024-06-12 21:47:46 |
合計ジャッジ時間 | 12,732 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 6 ms
6,940 KB |
testcase_08 | AC | 104 ms
6,940 KB |
testcase_09 | AC | 944 ms
12,412 KB |
testcase_10 | AC | 216 ms
6,940 KB |
testcase_11 | AC | 457 ms
7,576 KB |
testcase_12 | AC | 105 ms
6,944 KB |
testcase_13 | AC | 4 ms
6,940 KB |
testcase_14 | AC | 940 ms
11,744 KB |
testcase_15 | AC | 950 ms
11,548 KB |
testcase_16 | AC | 930 ms
12,276 KB |
testcase_17 | AC | 953 ms
12,524 KB |
testcase_18 | AC | 944 ms
12,916 KB |
testcase_19 | AC | 945 ms
12,992 KB |
testcase_20 | AC | 939 ms
11,444 KB |
testcase_21 | AC | 958 ms
12,920 KB |
testcase_22 | AC | 948 ms
11,916 KB |
testcase_23 | AC | 950 ms
12,372 KB |
ソースコード
void main(){ import std.stdio, std.string, std.conv, std.algorithm; import std.range; 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; i..n){ 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); // 0->remaining, 1->used foreach(i; 0..(1<<n)){ int[] v; foreach(j; 0..n){ if(!(i>>j&1)) v~=j; } foreach(k; 0..v.length){ auto c=0; if(k>0) c=max(c, mm[v[k-1]][v[k]]); if(k+1<v.length) c=max(c, mm[v[k]][v[k+1]]); (dp[i|(1<<v[k])]+=dp[i]+(c+1)*f[n-v.length])%=mod; } (ex[n-v.length]+=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)); } }