結果

問題 No.1077 Noelちゃんと星々4
ユーザー Lily89164763Lily89164763
提出日時 2020-06-12 21:30:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 2,447 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 114,820 KB
実行使用メモリ 63,928 KB
最終ジャッジ日時 2024-06-24 04:29:26
合計ジャッジ時間 4,577 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
25,344 KB
testcase_01 AC 30 ms
23,428 KB
testcase_02 AC 96 ms
51,716 KB
testcase_03 AC 113 ms
59,540 KB
testcase_04 AC 58 ms
35,208 KB
testcase_05 AC 54 ms
34,516 KB
testcase_06 AC 66 ms
40,524 KB
testcase_07 AC 70 ms
40,372 KB
testcase_08 AC 60 ms
39,992 KB
testcase_09 AC 56 ms
32,244 KB
testcase_10 AC 114 ms
61,496 KB
testcase_11 AC 86 ms
49,420 KB
testcase_12 AC 78 ms
43,052 KB
testcase_13 AC 50 ms
32,236 KB
testcase_14 AC 110 ms
58,632 KB
testcase_15 AC 76 ms
40,652 KB
testcase_16 AC 62 ms
36,604 KB
testcase_17 AC 81 ms
44,864 KB
testcase_18 AC 117 ms
60,224 KB
testcase_19 AC 52 ms
31,752 KB
testcase_20 AC 30 ms
27,112 KB
testcase_21 AC 123 ms
63,928 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 CompLib.Util;

public class Program
{
    private const int MaxY = 10000;

    public void Solve()
    {
        var sc = new Scanner();
        int n = sc.NextInt();
        int[] y = sc.IntArray();


        var dp = new int[(n + 1) * (MaxY + 1)];
        for (int i = 0; i <= n; i++)
        {
            for (int j = 0; j <= MaxY; j++)
            {
                dp[C(i, j)] = int.MaxValue;
            }
        }

        dp[C(0, 0)] = 0;

        for (int i = 1; i <= n; i++)
        {
            int min = int.MaxValue;
            for (int j = 0; j <= MaxY; j++)
            {
                min = Math.Min(min, dp[C(i - 1, j)]);
                dp[C(i, j)] = min + Math.Abs(y[i - 1] - j);
            }
        }

        int ans = int.MaxValue;
        for (int i = 0; i <= MaxY; i++)
        {
            ans = Math.Min(ans, dp[C(n, i)]);
        }

        Console.WriteLine(ans);
    }

    int C(int i, int j)
    {
        return i * (MaxY + 1) + j;
    }

    public static void Main(string[] args) => new Program().Solve();
}

namespace CompLib.Util
{
    using System;
    using System.Linq;

    class Scanner
    {
        private string[] _line;
        private int _index;
        private const char Separator = ' ';

        public Scanner()
        {
            _line = new string[0];
            _index = 0;
        }

        public string Next()
        {
            while (_index >= _line.Length)
            {
                _line = Console.ReadLine().Split(Separator);
                _index = 0;
            }

            return _line[_index++];
        }

        public int NextInt() => int.Parse(Next());
        public long NextLong() => long.Parse(Next());
        public double NextDouble() => double.Parse(Next());
        public decimal NextDecimal() => decimal.Parse(Next());
        public char NextChar() => Next()[0];
        public char[] NextCharArray() => Next().ToCharArray();

        public string[] Array()
        {
            _line = Console.ReadLine().Split(Separator);
            _index = _line.Length;
            return _line;
        }

        public int[] IntArray() => Array().Select(int.Parse).ToArray();
        public long[] LongArray() => Array().Select(long.Parse).ToArray();
        public double[] DoubleArray() => Array().Select(double.Parse).ToArray();
        public decimal[] DecimalArray() => Array().Select(decimal.Parse).ToArray();
    }
}
0