結果

問題 No.37 遊園地のアトラクション
ユーザー nanophoto12nanophoto12
提出日時 2014-10-30 00:10:51
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,040 bytes
コンパイル時間 1,121 ms
コンパイル使用メモリ 106,624 KB
実行使用メモリ 19,764 KB
最終ジャッジ日時 2024-06-09 17:45:13
合計ジャッジ時間 3,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
19,328 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 30 ms
19,712 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 28 ms
19,200 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 36 ms
19,376 KB
testcase_23 AC 28 ms
19,584 KB
testcase_24 AC 28 ms
19,712 KB
testcase_25 AC 28 ms
19,328 KB
testcase_26 AC 28 ms
19,328 KB
testcase_27 WA -
testcase_28 AC 29 ms
19,456 KB
testcase_29 WA -
testcase_30 AC 28 ms
19,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Globalization;
using System.Linq;

class Program
{
    public static void Main(string[] args)
    {
        var t = int.Parse(Console.ReadLine());
        var n = int.Parse(Console.ReadLine());
        var ci = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        var vi = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();

        int[] dp = new int[t + 1];
        int[,] counts = new int[t+ 1, n];
        for (int dt = 1; dt <= t; dt++)
        {
            int next = -1;
            int maxIndex = -1;
            for (int k = 0; k < n; k++)
            {
                var current = 0;
                if (dt - ci[k] >= 0)
                {
                    current = dp[dt - ci[k]] + (int) (vi[k]*Math.Pow(1/2d, counts[dt - ci[k], k]));
                }
                else
                {
                    continue;
                }
                if(next < current)
                {
                    next = current;
                    maxIndex = k;
                }
            }
            if (next == - 1)
            {
                dp[dt] = dp[dt-1];
                for (int i = 0; i < n; i++)
                {
                    if (dt - ci[i] >= 0)
                    {
                        counts[dt, i] = counts[dt - ci[i], i];
                    }
                    else
                    {
                        counts[dt, i] = 0;
                    }
                }
                continue;
            }
            dp[dt] = next;
            for (int i = 0; i < n; i++)
            {
                if (dt - ci[i] >= 0)
                {
                    counts[dt, i] = counts[dt - ci[i], i];
                }
                else
                {
                    counts[dt, i] = 0;
                }
            }
            counts[dt, maxIndex]++;
        }
        Console.WriteLine(dp[t].ToString(CultureInfo.InvariantCulture));
    }
}

0