結果
問題 | No.472 平均順位 |
ユーザー | k3079k |
提出日時 | 2019-09-12 15:24:47 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,027 bytes |
コンパイル時間 | 5,513 ms |
コンパイル使用メモリ | 112,376 KB |
実行使用メモリ | 450,004 KB |
最終ジャッジ日時 | 2024-07-02 17:06:33 |
合計ジャッジ時間 | 8,791 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
33,144 KB |
testcase_01 | AC | 31 ms
26,196 KB |
testcase_02 | AC | 30 ms
28,060 KB |
testcase_03 | AC | 30 ms
26,068 KB |
testcase_04 | AC | 33 ms
27,848 KB |
testcase_05 | AC | 32 ms
26,260 KB |
testcase_06 | AC | 32 ms
26,204 KB |
testcase_07 | AC | 38 ms
26,368 KB |
testcase_08 | AC | 130 ms
38,724 KB |
testcase_09 | AC | 497 ms
90,164 KB |
testcase_10 | AC | 310 ms
65,920 KB |
testcase_11 | AC | 1,498 ms
223,556 KB |
testcase_12 | AC | 1,038 ms
162,604 KB |
testcase_13 | MLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
コンパイルメッセージ
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.Linq; namespace Test01 { class Program { const int INF = 1000000009; static void Main(string[] args) { int[] input = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray(); int N = input[0]; int P = input[1]; int[,] c = new int[N + 1, 4]; for(int i = 1; i <= N; i++) { input = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray(); for(int j = 0; j < 4; j++) { if (j == 3) c[i, j] = 1; else c[i, j] = input[j]; } } double[,,] dp = new double[P + 1, N + 1, 4]; for(int p = 0; p <= P; p++) { for(int i = 0; i <= N; i++) { for(int j = 0; j < 4; j++) { if (p < j) dp[p, i, j] = INF; } } } //p問解いた for(int p = 0; p <= P; p++) { //i番目のコンテスト for(int i = 1; i <= N; i++) { //i番目のコンテストでj解いた for(int j = 0; j <= 3; j++) { if (p < j) continue; double min = Math.Min(dp[p - j, i - 1, 0], dp[p - j, i - 1, 1]); min = Math.Min(min, dp[p - j, i - 1, 2]); min = Math.Min(min, dp[p - j, i - 1, 3]); dp[p, i, j] = (min * (i - 1) + c[i, j]) / i; } } } double ans; ans = Math.Min(dp[P, N, 0], dp[P, N, 1]); ans = Math.Min(ans, dp[P, N, 2]); ans = Math.Min(ans, dp[P, N, 3]); Console.WriteLine(ans); } } }