結果

問題 No.266 最終進化を目指せ
ユーザー りあんりあん
提出日時 2015-08-08 00:03:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 3,123 bytes
コンパイル時間 3,042 ms
コンパイル使用メモリ 109,084 KB
実行使用メモリ 23,864 KB
最終ジャッジ日時 2023-09-25 06:30:46
合計ジャッジ時間 5,337 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
21,672 KB
testcase_01 AC 62 ms
23,756 KB
testcase_02 AC 62 ms
21,640 KB
testcase_03 AC 62 ms
21,632 KB
testcase_04 AC 62 ms
21,596 KB
testcase_05 AC 61 ms
21,712 KB
testcase_06 AC 62 ms
21,632 KB
testcase_07 AC 62 ms
21,604 KB
testcase_08 AC 62 ms
21,708 KB
testcase_09 AC 62 ms
21,604 KB
testcase_10 AC 62 ms
21,644 KB
testcase_11 AC 63 ms
23,760 KB
testcase_12 AC 61 ms
21,792 KB
testcase_13 AC 62 ms
23,864 KB
testcase_14 AC 61 ms
23,712 KB
testcase_15 AC 61 ms
21,668 KB
testcase_16 AC 62 ms
21,692 KB
testcase_17 AC 63 ms
21,640 KB
testcase_18 AC 62 ms
21,612 KB
testcase_19 AC 61 ms
23,776 KB
testcase_20 AC 62 ms
21,612 KB
testcase_21 AC 64 ms
21,740 KB
testcase_22 AC 63 ms
21,792 KB
testcase_23 AC 63 ms
23,656 KB
testcase_24 AC 62 ms
23,628 KB
testcase_25 AC 62 ms
21,756 KB
testcase_26 AC 62 ms
21,736 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.Collections.Generic;
using System.Linq;
using System.IO;
using System.Text;
using System.Numerics;

namespace Solver
{
    class Program
    {
        const int M = 1000000007;
        const double eps = 10e-9;
        static void Main()
        {
            var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
            var sc = new Scan();
            int n = sc.Int;
            int[] s = sc.IntArr;
            var a = new int[n + 1][];
            for (int i = 0; i <= n; i++)
            {
                a[i] = new int[s[i] + 1];
            }
            for (int i = 0; i < a[0].Length; i++)
            {
                a[0][i] = i + 1;
            }
            for (int i = 1; i <= n; i++)
            {
                for (int j = 0; j < a[i].Length; j++)
                {
                    if (j < a[i - 1].Length)
                    {
                        a[i][j] = a[i - 1][j] + 1;
                    }
                    else
                    {
                        int min = M;
                        for (int k = 0; k < j; k++)
                        {
                            min = Math.Min(min, a[i][k] + a[i][j - k - 1]);
                        }
                        a[i][j] = min;
                    }
                }
            }
            sw.WriteLine(String.Join(" ", a[n]));
            sw.Flush();
        }
    }
    class Scan
    {
        public int Int { get { return int.Parse(Console.ReadLine().Trim()); } }
        public long Long { get { return long.Parse(Console.ReadLine().Trim()); } }
        public string Str { get { return Console.ReadLine().Trim(); } }
        public int[] IntArr { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray(); } }
        public long[] LongArr { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray(); } }
        public double[] DoubleArr { get { return Console.ReadLine().Split().Select(double.Parse).ToArray(); } }
        public string[] StrArr { get { return Console.ReadLine().Trim().Split(); } }
        public List<int> IntList { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToList(); } }
        public List<long> LongList { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToList(); } }
        public void Multi(out int a, out int b) { var arr = IntArr; a = arr[0]; b = arr[1]; }
        public void Multi(out int a, out int b, out int c) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; }
        public void Multi(out int a, out int b, out int c, out int d) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; d = arr[3]; }
        public void Multi(out int a, out string b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1]; }
        public void Multi(out int a, out char b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1][0]; }
        public void Multi(out long a, out long b) { var arr = LongArr; a = arr[0]; b = arr[1]; }
        public void Multi(out string a, out string b) { var arr = StrArr; a = arr[0]; b = arr[1]; }
    }
}
0