結果

問題 No.562 超高速一人かるた small
ユーザー 37zigen37zigen
提出日時 2020-03-16 01:36:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 3,000 ms
コード長 2,000 bytes
コンパイル時間 3,904 ms
コンパイル使用メモリ 78,532 KB
実行使用メモリ 76,616 KB
最終ジャッジ日時 2024-05-05 04:22:42
合計ジャッジ時間 7,478 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
76,232 KB
testcase_01 AC 176 ms
75,868 KB
testcase_02 AC 179 ms
76,224 KB
testcase_03 AC 178 ms
75,792 KB
testcase_04 AC 200 ms
76,536 KB
testcase_05 AC 195 ms
76,380 KB
testcase_06 AC 181 ms
76,028 KB
testcase_07 AC 177 ms
76,012 KB
testcase_08 AC 189 ms
76,616 KB
testcase_09 AC 178 ms
75,780 KB
testcase_10 AC 187 ms
75,780 KB
testcase_11 AC 178 ms
75,796 KB
testcase_12 AC 169 ms
76,032 KB
testcase_13 AC 185 ms
76,360 KB
testcase_14 AC 187 ms
76,376 KB
testcase_15 AC 193 ms
76,260 KB
testcase_16 AC 198 ms
75,844 KB
testcase_17 AC 190 ms
75,684 KB
testcase_18 AC 176 ms
75,644 KB
testcase_19 AC 189 ms
76,256 KB
testcase_20 AC 188 ms
76,036 KB
testcase_21 AC 175 ms
76,096 KB
testcase_22 AC 197 ms
76,196 KB
testcase_23 AC 193 ms
76,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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));
	}
}
0