結果
問題 | No.75 回数の期待値の問題 |
ユーザー | syoken_desuka |
提出日時 | 2015-03-01 14:42:43 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 50 ms / 5,000 ms |
コード長 | 4,852 bytes |
コンパイル時間 | 1,054 ms |
コンパイル使用メモリ | 113,300 KB |
実行使用メモリ | 26,912 KB |
最終ジャッジ日時 | 2024-06-24 00:31:22 |
合計ジャッジ時間 | 2,542 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
23,828 KB |
testcase_01 | AC | 25 ms
23,704 KB |
testcase_02 | AC | 26 ms
23,752 KB |
testcase_03 | AC | 29 ms
24,860 KB |
testcase_04 | AC | 27 ms
23,960 KB |
testcase_05 | AC | 27 ms
23,984 KB |
testcase_06 | AC | 27 ms
23,948 KB |
testcase_07 | AC | 30 ms
24,756 KB |
testcase_08 | AC | 31 ms
24,848 KB |
testcase_09 | AC | 30 ms
26,912 KB |
testcase_10 | AC | 29 ms
25,112 KB |
testcase_11 | AC | 29 ms
24,980 KB |
testcase_12 | AC | 30 ms
26,908 KB |
testcase_13 | AC | 30 ms
26,900 KB |
testcase_14 | AC | 29 ms
24,984 KB |
testcase_15 | AC | 29 ms
24,592 KB |
testcase_16 | AC | 31 ms
24,972 KB |
testcase_17 | AC | 40 ms
24,652 KB |
testcase_18 | AC | 46 ms
26,744 KB |
testcase_19 | AC | 50 ms
26,748 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Collections; using System.Linq; using System.Text; using System.Numerics; using sc = Scanner; class Program { static void Main(string[] args) { Solve(); #if DEBUG System.Console.WriteLine("続行するには何かキーを押してください..."); System.Console.ReadKey(); #endif } /// <summary> /// ここでとく /// </summary> static void Solve() { int n = sc.NextInt(); double[,] mat = new double[n,n+1]; if (n >= 0 && n < 7) { Console.WriteLine(6); return; } for (int i = 0; i < n; i++) { mat[i, i] = 6.0; mat[i, n] = 6.0; } for (int i = 0; i < 6; i++) { mat[(n - 1) - i, 0] = -6.0 + 1.0 * (i + 1); } for (int i = 0; i < n; i++) { for (int j = i + 1; j < i+7 && j < n; j++) { mat[i, j] = -1.0; } } #if DEBUG Console.WriteLine("mat check"); #endif for (int i = 0; i < n; i++) { double d = mat[i,i]; for (int j = i; j < n+1; j++) { mat[i, j] /= d; // i retu wo seiki ka } for (int j = i+1; j < n; j++) { for (int k = i+1; k < n+1; k++) { mat[j, k] -= mat[j, i] * mat[i, k]; } mat[j, i] = 0; } #if DEBUG Console.WriteLine("kkk"); #endif } for (int i = 0; i < n; i++) { for (int j = 0; j < i; j++) { #if DEBUG Console.WriteLine("{0} {1}: {2} {3}",n-1-i,n-1-j,n-1-j,n); #endif mat[n-1-i,n] -= mat[n-1-i,n-1-j]*mat[n-1-j,n]; mat[n-1-i, n - 1 - j] = 0; } } Console.WriteLine(mat[0, n]); #if DEBUG Console.WriteLine("local check"); // Visual Studioのローカル変数チェック用 MainにいくとSolve内のローカル変数消えちゃう #endif } } /// <summary> /// Java風のスキャナー,自作(某最速の人を参考) 自分の実装のせいか,バグってるっぽい バグが出たらO(n^3) n=100000 でTLE /// </summary> public static class Scanner { public static string NextString() { string tmp = ""; while (true) { int readData = Console.Read(); if (readData == -1) { break; } string data = char.ConvertFromUtf32(Console.Read()); if (data == " " || data == "\n") break; tmp += readData; } return tmp; } public static string[] NextStrArray() { return Console.ReadLine().Split(' '); } public static long[] NextLongArray() { string[] s = NextStrArray(); long[] a = new long[s.Length]; for (int i = 0; i < a.Length; i++) { a[i] = long.Parse(s[i]); } return a; } public static int[] NextIntArray() { string[] s = NextStrArray(); int[] a = new int[s.Length]; for (int i = 0; i < a.Length; i++) { a[i] = int.Parse(s[i]); } return a; } public static int NextInt() { string tmp = ""; while (true) { int readData; string data; readData = Console.Read(); if (readData == -1) //EOF { break; } data = char.ConvertFromUtf32(readData); if (data == " " || data == "\n") { break; } tmp += data; } return int.Parse(tmp); } public static double NextDouble() { string tmp = ""; while (true) { string readData = char.ConvertFromUtf32(Console.Read()); if (readData == " " || readData == "\n") break; tmp += readData; } return double.Parse(tmp); } public static long NextLong() { string tmp = ""; while (true) { string readData = char.ConvertFromUtf32(Console.Read()); if (readData == " " || readData == "\n") break; tmp += readData; } return long.Parse(tmp); } public static double[] NextDoubleArray() { string[] s = NextStrArray(); double[] a = new double[s.Length]; for (int i = 0; i < a.Length; i++) { a[i] = double.Parse(s[i]); } return a; } }