結果
問題 | No.563 超高速一人かるた large |
ユーザー | 37zigen |
提出日時 | 2017-08-26 12:54:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 847 ms / 3,000 ms |
コード長 | 2,000 bytes |
コンパイル時間 | 2,278 ms |
コンパイル使用メモリ | 79,096 KB |
実行使用メモリ | 120,820 KB |
最終ジャッジ日時 | 2024-10-15 17:40:31 |
合計ジャッジ時間 | 14,617 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 207 ms
76,512 KB |
testcase_01 | AC | 207 ms
76,288 KB |
testcase_02 | AC | 208 ms
75,696 KB |
testcase_03 | AC | 252 ms
76,136 KB |
testcase_04 | AC | 276 ms
76,468 KB |
testcase_05 | AC | 285 ms
75,996 KB |
testcase_06 | AC | 426 ms
79,564 KB |
testcase_07 | AC | 487 ms
82,564 KB |
testcase_08 | AC | 594 ms
101,028 KB |
testcase_09 | AC | 814 ms
119,780 KB |
testcase_10 | AC | 682 ms
118,880 KB |
testcase_11 | AC | 793 ms
120,820 KB |
testcase_12 | AC | 766 ms
119,900 KB |
testcase_13 | AC | 776 ms
119,476 KB |
testcase_14 | AC | 774 ms
120,296 KB |
testcase_15 | AC | 734 ms
120,436 KB |
testcase_16 | AC | 763 ms
120,756 KB |
testcase_17 | AC | 466 ms
79,648 KB |
testcase_18 | AC | 847 ms
118,136 KB |
testcase_19 | AC | 304 ms
75,364 KB |
testcase_20 | AC | 592 ms
100,732 KB |
ソースコード
import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.Scanner; class Main { public static void main(String[] args) { new Main().run(); } long MODULO = 1_000_000_000 + 7; long[] fac = new long[2001]; { fac[0] = 1; for (int i = 1; i < fac.length; ++i) { fac[i] = fac[i - 1] * i % MODULO; } } void run() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String[] s = new String[n]; for (int i = 0; i < n; ++i) { s[i] = sc.next(); } Arrays.sort(s); long[][] f = new long[n][n]; for (int i = 0; i < n; ++i) { f[i][i] = s[i].length(); if (i + 1 < n) { int L = 0; while (L < Math.min(s[i].length(), s[i + 1].length()) && s[i].charAt(L) == s[i + 1].charAt(L)) { ++L; } f[i][i + 1] = L; f[i + 1][i] = L; } } for (int i = 0; i < n; ++i) { for (int j = i + 2; j < n; ++j) { f[i][j] = Math.min(f[j - 1][j], f[i][j - 1]); f[j][i] = f[i][j]; } } long[][] comb = new long[2001][2001]; comb[0][0] = 1; for (int i = 1; i <= 2000; ++i) { for (int j = 0; j <= i; ++j) { comb[i][j] = (j > 0 ? comb[i - 1][j - 1] : 0) + comb[i - 1][j]; comb[i][j] %= MODULO; } } long[] dp = new long[n + 1]; for (int a = 0; a < n; ++a) { for (int b = a + 1; b < n; ++b) { dp[b - a] += Math.max(f[a][b], b + 1 < n ? f[b][b + 1] : 0) + 1; dp[b - a] %= MODULO; } } long[] ans = new long[n + 1]; for (int b = 0; b < n; ++b) { for (int K = b + 1; K <= n; ++K) { ans[K] += ((b + 1 < n ? f[b][b + 1] : 0) + 1) * comb[n - (b + 1)][K - (b + 1)] % MODULO * fac[K] % MODULO; ans[K] %= MODULO; } } for (int K = 1; K <= n; ++K) { for (int d = 1; d <= K && n - d - 1 >= 0; ++d) { ans[K] += comb[n - d - 1][K - d] * dp[d] % MODULO * fac[K] % MODULO; ans[K] %= MODULO; } } for(int K=1;K<=n;++K){ System.out.println(ans[K]); } } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }