結果

問題 No.162 8020運動
ユーザー kenkooookenkoooo
提出日時 2015-03-07 02:23:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 285 ms / 5,000 ms
コード長 1,456 bytes
コンパイル時間 3,213 ms
コンパイル使用メモリ 77,152 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-06-24 14:57:01
合計ジャッジ時間 10,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,232 KB
testcase_01 AC 218 ms
53,956 KB
testcase_02 AC 238 ms
54,064 KB
testcase_03 AC 266 ms
54,368 KB
testcase_04 AC 273 ms
53,872 KB
testcase_05 AC 245 ms
53,896 KB
testcase_06 AC 264 ms
54,024 KB
testcase_07 AC 278 ms
54,164 KB
testcase_08 AC 285 ms
54,488 KB
testcase_09 AC 157 ms
54,000 KB
testcase_10 AC 234 ms
53,712 KB
testcase_11 AC 219 ms
53,880 KB
testcase_12 AC 199 ms
54,312 KB
testcase_13 AC 272 ms
53,996 KB
testcase_14 AC 163 ms
54,060 KB
testcase_15 AC 170 ms
54,060 KB
testcase_16 AC 205 ms
54,216 KB
testcase_17 AC 179 ms
54,256 KB
testcase_18 AC 269 ms
54,324 KB
testcase_19 AC 241 ms
54,256 KB
testcase_20 AC 252 ms
54,208 KB
testcase_21 AC 250 ms
54,428 KB
testcase_22 AC 239 ms
54,108 KB
testcase_23 AC 252 ms
54,312 KB
testcase_24 AC 240 ms
54,232 KB
testcase_25 AC 251 ms
54,032 KB
testcase_26 AC 159 ms
54,372 KB
testcase_27 AC 230 ms
53,980 KB
testcase_28 AC 275 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		double p0 = sc.nextInt() / 100.0;
		double p1 = sc.nextInt() / 100.0;
		double p2 = sc.nextInt() / 100.0;
		sc.close();

		int n = 80 - a;
		double[][] dp = new double[n + 1][15];
		for (int i = 0; i < 15; i++) {
			dp[0][i] = i;
		}

		for (int year = 1; year <= n; year++) {
			for (int tooth = 1; tooth < 15; tooth++) {
				for (int bit = 0; bit < 1 << tooth; bit++) {

					/*
					 * 1<<toothからbitに遷移する確率pを計算する
					 */
					double p = 1;
					for (int t = 0; t < tooth; t++) {
						boolean injured = ((bit >> t & 1) == 1);// 歯tが抜けていればtrue
						int count = (t == 0 ? 0 : 1) + (t == tooth - 1 ? 0 : 1);
						if (count == 0) {
							// 両隣が抜歯済み
							p *= injured ? p0 : 1 - p0;
						} else if (count == 1) {
							// 片側が抜歯済み
							p *= injured ? p1 : 1 - p1;
						} else {
							// 両隣が生えてる
							p *= injured ? p2 : 1 - p2;
						}
					}

					double sum = 0;
					int seq = 0;
					for (int l = 0; l <= tooth; l++) {
						if ((bit >> l & 1) == 0 && (l < tooth)) {
							seq++;
						} else {
							sum += dp[year - 1][seq];
							seq = 0;
						}
					}
					dp[year][tooth] += p * sum;
				}
			}
		}
		// System.out.println(Arrays.deepToString(dp));
		System.out.println(dp[n][14] * 2);
	}

}
0