結果

問題 No.463 魔法使いのすごろく🎲
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-22 18:53:23
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 3,158 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 160,820 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-03 22:53:31
合計ジャッジ時間 3,686 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 3 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 3 ms
4,380 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 3 ms
4,380 KB
testcase_22 AC 3 ms
4,376 KB
testcase_23 AC 3 ms
4,376 KB
testcase_24 AC 3 ms
4,380 KB
testcase_25 AC 3 ms
4,376 KB
testcase_26 AC 3 ms
4,376 KB
testcase_27 AC 4 ms
4,380 KB
testcase_28 AC 3 ms
4,376 KB
testcase_29 AC 4 ms
4,380 KB
testcase_30 AC 3 ms
4,376 KB
testcase_31 AC 3 ms
4,376 KB
testcase_32 AC 3 ms
4,376 KB
testcase_33 AC 3 ms
4,380 KB
testcase_34 AC 3 ms
4,376 KB
testcase_35 AC 1 ms
4,384 KB
testcase_36 AC 1 ms
4,376 KB
testcase_37 AC 2 ms
4,380 KB
testcase_38 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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;
        b[i] = 0.0;
        foreach (j; 1 .. M + 1) {
          const ii = (i + j > N - 1) ? ((N - 1) * 2 - (i + j)) : (i + j);
          a[i][ii] -= 1.0 / M;
          b[i] += C[ii] / M;
        }
      }
      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];
        }
        b[h] /= 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 = ", b);
      }
debug{
foreach(i;0..N-1){
writeln(b[i]," ",iota(1,M+1).map!(j=>(i+j>N-1)?((N-1)*2-(i+j)):(i+j)).map!(ii=>C[ii]+b[ii]).sum/M);
}
}
      
      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], C[i + j] + b[i + j]);
          }
        }
      }
      debug {
        writeln("dp = ", dp);
      }
      writefln("%.10f", dp[0]);
    }
  } catch (EOFException e) {
  }
}
0