結果

問題 No.463 魔法使いのすごろく🎲
ユーザー GrenacheGrenache
提出日時 2016-12-15 01:04:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,699 bytes
コンパイル時間 3,950 ms
コンパイル使用メモリ 78,892 KB
実行使用メモリ 42,048 KB
最終ジャッジ日時 2024-05-07 14:41:53
合計ジャッジ時間 11,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 146 ms
41,384 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 141 ms
41,164 KB
testcase_07 AC 149 ms
41,360 KB
testcase_08 AC 149 ms
41,448 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 141 ms
41,548 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 142 ms
41,356 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 157 ms
41,788 KB
testcase_23 AC 153 ms
41,632 KB
testcase_24 AC 153 ms
41,456 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 142 ms
41,192 KB
testcase_36 AC 145 ms
41,496 KB
testcase_37 WA -
testcase_38 AC 139 ms
41,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder463_1 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final long INF = -1;

		int n = sc.nextInt();
		int m = sc.nextInt();

		int[] a = new int[n];
		for (int i = 0; i < n - 2; i++) {
			a[i + 1] = sc.nextInt();
		}

		if (m == n - 1) {
			pr.println(0);
			return;
		}

		long[][] ex = new long[n - 1][n];
		int[][] cnt = new int[n - 1][n];
		for (int i = 0; i < n - 1; i++) {
			Arrays.fill(ex[i], INF);
			ex[i][n - 1] = 0;
		}
		for (int i = 1; i <= m; i++) {
			ex[0][i] = a[i];
			cnt[0][i]++;
		}

//		double[] mm = new double[n - 1];
//		mm[0] = (double)1 / m;
//		for (int i = 1; i < n - 1; i++) {
//			mm[i] = mm[i - 1] / m;
//		}

		for (int k = 1; k < n - 1; k++) {
			for (int i = k; i < n - 1; i++) {
				if (i + m >= n - 1) {
					ex[k][n - 1] += Math.max(0, ex[k - 1][i]);
					cnt[k][n - 1] += cnt[k - 1][i];
				} else if (ex[k - 1][i] != INF) {
					for (int j = 1; j <= m; j++) {
						ex[k][i + j] = Math.max(0, ex[k][i + j]) + ex[k - 1][i] + a[i + j];
						cnt[k][i + j] += cnt[k - 1][i];
					}
				}
			}
		}

		double sum = 0;
		double mm = (double)1 / m;
		double sumcnt = 0;
		for (int i = 1; i < n - 1; i++) {
			sum += ex[i][n - 1] * mm;
			sumcnt += cnt[i][n - 1] * mm;
			mm /= m;
		}

		pr.printf("%.10f\n", sum);
//		pr.println(sumcnt);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0