結果

問題 No.907 Continuous Kadomatu
ユーザー 37zigen37zigen
提出日時 2019-04-23 19:22:31
言語 Java19
(openjdk 21)
結果
RE  
実行時間 -
コード長 3,067 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 76,392 KB
実行使用メモリ 57,956 KB
最終ジャッジ日時 2023-08-03 16:05:00
合計ジャッジ時間 7,612 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,000 KB
testcase_01 AC 125 ms
55,924 KB
testcase_02 AC 122 ms
55,868 KB
testcase_03 AC 126 ms
55,928 KB
testcase_04 AC 126 ms
55,712 KB
testcase_05 AC 195 ms
56,392 KB
testcase_06 AC 132 ms
55,772 KB
testcase_07 AC 197 ms
56,932 KB
testcase_08 AC 186 ms
56,708 KB
testcase_09 AC 204 ms
57,084 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 123 ms
55,924 KB
testcase_26 AC 123 ms
55,988 KB
testcase_27 AC 123 ms
55,660 KB
testcase_28 AC 123 ms
56,168 KB
testcase_29 AC 126 ms
55,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// O(N^4)の解
// 制約の侵害の有無を確認

import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	final long MOD = 1_000_000_000 + 7;
	long[] karamatsu_prob = new long[200];
	long[] fac = new long[200];
	long[] ifac = new long[200];

	long pow(long a, long n) {
		long ret = 1;
		for (; n > 0; n >>= 1, a = a * a % MOD) {
			if (n % 2 == 1) {
				ret = ret * a % MOD;
			}
		}
		return ret;
	}

	long inv(long a) {
		return pow(a, MOD - 2);
	}

	{
		fac[0] = fac[1] = 1;
		ifac[0] = ifac[1] = 1;
		for (int i = 2; i < fac.length; ++i)
			fac[i] = fac[i - 1] * i % MOD;
		for (int i = 2; i < ifac.length; ++i) {
			ifac[i] = inv(fac[i]);
		}
	}

	long comb(int n, int k) {
		return fac[n] * ifac[k] % MOD * ifac[n - k] % MOD;
	}

	{
		karamatsu_prob[0] = 1;
		karamatsu_prob[1] = 1;
		for (int i = 2; i < karamatsu_prob.length; ++i) {
			for (int j = 0; j <= i - 1; j += 2) {
				karamatsu_prob[i] += karamatsu_prob[j] * karamatsu_prob[i - j - 1] % MOD * comb(i - 1, j) % MOD;
				karamatsu_prob[i] %= MOD;
			}
		}
		for (int i = 0; i < karamatsu_prob.length; ++i) {
			karamatsu_prob[i] = karamatsu_prob[i] * ifac[i] % MOD;
		}
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		if (!(3 <= N && N <= 100))
			throw new AssertionError();
		++N;
		long[] l = new long[N];
		long[] r = new long[N];
		HashSet<Long> set = new HashSet<>();
		for (int i = 1; i < N; ++i) {
			l[i] = sc.nextLong();
			r[i] = sc.nextLong();
			if (!(1 <= l[i] && r[i] <= 1e9 && l[i] < r[i]))
				throw new AssertionError();
			set.add(l[i]);
			set.add(r[i]);
			// [l[i],r[i])
		}
		set.add((long) 1e9);
		set.add((long) 1e9 + 1);
		l[0] = (long) 1e9;
		r[0] = (long) 1e9 + 1;
		long[] a = new long[set.size()];
		int sz = 0;
		for (long v : set) {
			a[sz] = v;
			++sz;
		}
		Arrays.sort(a);
		// [a[i],a[i+1]]
		long[][] p = new long[N][sz];
		for (int i = 0; i < N; ++i) {
			for (int j = 0; j + 1 < sz; ++j) {
				if (!(l[i] <= a[j] && a[j + 1] <= r[i]))
					continue;
				p[i][j] = (a[j + 1] - a[j]) * inv(r[i] - l[i]) % MOD;
			}
		}
		long[][] prob = new long[N][sz];
		long[][] pending = new long[N][sz];
		prob[0][sz - 2] = 1;
		for (int t = 0; t < N; ++t) {
			for (int src = 0; src + 1 < sz; ++src) {
				long prob_cur = pending[t][src];
				for (int i = 0; i + t < N; ++i) {
					prob_cur = prob_cur * p[t + i][src] % MOD;
					if(prob_cur==0)break;
					prob[t + i][src] += prob_cur * karamatsu_prob[i + 1] % MOD;
					prob[t + i][src] %= MOD;
				}
				for (int dst = 0; dst + 1 < sz; ++dst) {
					if ((t % 2 == 1 && src >= dst) || (t % 2 == 0 && src <= dst))
						continue;
					if (t + 1 < N) {
						pending[t + 1][dst] += prob[t][src] % MOD;
						pending[t + 1][dst] %= MOD;
					}
				}
			}

		}

		long ans = 0;
		for (int i = 0; i < prob[N - 1].length; ++i)
			ans = (ans + prob[N - 1][i]) % MOD;
		System.out.println(ans);

	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0