結果
問題 | No.463 魔法使いのすごろく🎲 |
ユーザー | 👑 hos.lyric |
提出日時 | 2019-01-22 18:31:42 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,931 bytes |
コンパイル時間 | 3,281 ms |
コンパイル使用メモリ | 163,688 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-13 03:30:47 |
合計ジャッジ時間 | 3,936 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 3 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | AC | 3 ms
6,940 KB |
testcase_22 | AC | 3 ms
6,944 KB |
testcase_23 | AC | 3 ms
6,940 KB |
testcase_24 | AC | 3 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 3 ms
6,944 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 1 ms
6,944 KB |
testcase_36 | AC | 1 ms
6,944 KB |
testcase_37 | AC | 1 ms
6,944 KB |
testcase_38 | AC | 2 ms
6,944 KB |
ソースコード
import std.conv, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.container, std.math, std.numeric, std.range, std.regex, std.typecons; import core.bitop; class EOFException : Throwable { this() { super("EOF"); } } string[] tokens; string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; } int readInt() { return readToken.to!int; } long readLong() { return readToken.to!long; } real readReal() { return readToken.to!real; } void chmin(T)(ref T t, in T f) { if (t > f) t = f; } void chmax(T)(ref T t, in T f) { if (t < f) t = f; } int binarySearch(T)(in T[] as, in bool delegate(T) test) { int low = -1, upp = cast(int)(as.length); for (; low + 1 < upp; ) { int mid = (low + upp) >> 1; (test(as[mid]) ? low : upp) = mid; } return upp; } int lowerBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a < val)); } int upperBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a <= val)); } int N, M; real[] C; void main() { try { for (; ; ) { N = readInt(); M = readInt(); C = new real[N]; C[0] = C[N - 1] = 0.0; foreach (i; 1 .. N - 1) { C[i] = readReal(); } auto a = new real[][](N, N); auto b = new real[N]; foreach (i; 0 .. N - 1) { a[i][] = 0.0; a[i][i] = 1.0; foreach (j; 1 .. M + 1) { a[i][(i + j > N - 1) ? ((N - 1) * 2 - (i + j)) : (i + j)] -= 1.0 / M; } b[i] = C[i]; } a[N - 1][] = 0.0; a[N - 1][N - 1] = 1.0; b[N - 1] = 0.0; debug { foreach (i; 0 .. N) { writeln(a[i], " ", b[i]); } } foreach (h; 0 .. N) { foreach (i; h + 1 .. N) { if (abs(a[h][h]) < abs(a[i][h])) { swap(a[h], a[i]); swap(b[h], b[i]); } } foreach (j; h + 1 .. N) { a[h][j] /= a[h][h]; } a[h][h] = 1.0; foreach (i; h + 1 .. N) { foreach (j; h + 1 .. N) { a[i][j] -= a[i][h] * a[h][j]; } b[i] -= a[i][h] * b[h]; a[i][h] = 0.0; } } foreach_reverse (i; 0 .. N) { foreach (j; i + 1 .. N) { b[i] -= a[i][j] * b[j]; } } debug { writeln(b); } auto dp = new real[N]; foreach_reverse (i; 0 .. N) { if (i + M >= N - 1) { dp[i] = 0.0; } else { // no magic dp[i] = 0.0; foreach (j; 1 .. M + 1) { dp[i] += (C[i + j] + dp[i + j]) / M; } // magic foreach (j; 1 .. M + 1) { chmin(dp[i], b[i + j]); } } } debug { writeln("dp = ", dp); } writefln("%.10f", dp[0]); } } catch (EOFException e) { } }