結果
| 問題 | No.76 回数の期待値で練習 |
| コンテスト | |
| ユーザー |
EmKjp
|
| 提出日時 | 2019-06-10 22:05:49 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 57 ms / 5,000 ms |
| コード長 | 4,792 bytes |
| コンパイル時間 | 931 ms |
| コンパイル使用メモリ | 113,084 KB |
| 実行使用メモリ | 26,112 KB |
| 最終ジャッジ日時 | 2024-10-06 00:49:55 |
| 合計ジャッジ時間 | 1,535 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.IO;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using E = System.Linq.Enumerable;
partial class Solver
{
const int mod = 1000000007;
public void Run()
{
var T = ni();
var Q = ni(T);
var P = new double[6 + 1];
var dp = new double[1000000 + 1];
dp[1] = 1.0000000000000000;
dp[2] = 1.0833333333333333;
dp[3] = 1.2569444444444444;
dp[4] = 1.5353009259259260;
dp[5] = 1.6915991512345676;
dp[6] = 2.0513639724794235;
P[1] = dp[2] - 1.0;
P[2] = (dp[3] - 1.0 - dp[2] * P[1]);
P[3] = (dp[4] - 1.0 - dp[2] * P[2] - dp[3] * P[1]);
P[4] = (dp[5] - 1.0 - dp[2] * P[3] - dp[3] * P[2] - dp[4] * P[1]);
P[5] = (dp[6] - 1.0 - dp[2] * P[4] - dp[3] * P[3] - dp[4] * P[2] - dp[5] * P[1]);
P[6] = 1 - P[1] - P[2] - P[3] - P[4] - P[5];
for (int i = 7; i < dp.Length; i++)
{
double v = 0;
for (int j = 1; j <= 6; j++)
{
v += P[j] * (dp[i - j] + 1.0);
}
dp[i] = v;
}
foreach (var q in Q)
{
cout.WriteLine(dp[q]);
}
}
}
// PREWRITEN CODE BEGINS FROM HERE
partial class Solver : Scanner
{
public static void Main(string[] args)
{
#if LOCAL
new Solver(Console.In, Console.Out).Run();
#else
Console.SetOut(new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false });
new Solver(Console.In, Console.Out).Run();
Console.Out.Flush();
#endif
}
#pragma warning disable IDE0052
private readonly TextReader cin;
private readonly TextWriter cout;
#pragma warning restore IDE0052
public Solver(TextReader reader, TextWriter writer)
: base(reader)
{
this.cin = reader;
this.cout = writer;
}
public Solver(string input, TextWriter writer)
: this(new StringReader(input), writer)
{
}
#pragma warning disable IDE1006
#pragma warning disable IDE0051
private int ni() { return NextInt(); }
private int[] ni(int n) { return NextIntArray(n); }
private long nl() { return NextLong(); }
private long[] nl(int n) { return NextLongArray(n); }
private double nd() { return NextDouble(); }
private double[] nd(int n) { return NextDoubleArray(n); }
private string ns() { return Next(); }
private string[] ns(int n) { return NextArray(n); }
#pragma warning restore IDE1006
#pragma warning restore IDE0051
}
public static class LinqPadExtension
{
static public T Dump<T>(this T obj)
{
#if LOCAL
return LINQPad.Extensions.Dump(obj);
#else
return obj;
#endif
}
}
public class Scanner
{
private readonly TextReader Reader;
private readonly Queue<string> TokenQueue = new Queue<string>();
private readonly CultureInfo ci = CultureInfo.InvariantCulture;
public Scanner()
: this(Console.In)
{
}
public Scanner(TextReader reader)
{
this.Reader = reader;
}
public int NextInt() { return int.Parse(Next(), ci); }
public long NextLong() { return long.Parse(Next(), ci); }
public double NextDouble() { return double.Parse(Next(), ci); }
public string[] NextArray(int size)
{
var array = new string[size];
for (int i = 0; i < size; i++) array[i] = Next();
return array;
}
public int[] NextIntArray(int size)
{
var array = new int[size];
for (int i = 0; i < size; i++) array[i] = NextInt();
return array;
}
public long[] NextLongArray(int size)
{
var array = new long[size];
for (int i = 0; i < size; i++) array[i] = NextLong();
return array;
}
public double[] NextDoubleArray(int size)
{
var array = new double[size];
for (int i = 0; i < size; i++) array[i] = NextDouble();
return array;
}
public string Next()
{
if (TokenQueue.Count == 0)
{
if (!StockTokens()) throw new InvalidOperationException();
}
return TokenQueue.Dequeue();
}
public bool HasNext()
{
if (TokenQueue.Count > 0)
return true;
return StockTokens();
}
static readonly char[] _separator = new[] { ' ' };
private bool StockTokens()
{
while (true)
{
var line = Reader.ReadLine();
if (line == null) return false;
var tokens = line.Split(_separator, StringSplitOptions.RemoveEmptyEntries);
if (tokens.Length == 0) continue;
foreach (var token in tokens)
TokenQueue.Enqueue(token);
return true;
}
}
}
EmKjp