結果

問題 No.710 チーム戦
ユーザー Tomohiko HasegawaTomohiko Hasegawa
提出日時 2019-03-30 15:37:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 118 ms / 3,000 ms
コード長 2,163 bytes
コンパイル時間 1,007 ms
コンパイル使用メモリ 111,888 KB
実行使用メモリ 35,664 KB
最終ジャッジ日時 2024-11-15 16:57:50
合計ジャッジ時間 4,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
18,688 KB
testcase_01 AC 29 ms
19,712 KB
testcase_02 AC 109 ms
35,544 KB
testcase_03 AC 108 ms
35,664 KB
testcase_04 AC 111 ms
35,552 KB
testcase_05 AC 108 ms
35,416 KB
testcase_06 AC 108 ms
35,540 KB
testcase_07 AC 111 ms
35,540 KB
testcase_08 AC 111 ms
35,532 KB
testcase_09 AC 110 ms
35,416 KB
testcase_10 AC 107 ms
35,532 KB
testcase_11 AC 108 ms
35,532 KB
testcase_12 AC 111 ms
35,424 KB
testcase_13 AC 110 ms
35,412 KB
testcase_14 AC 111 ms
35,424 KB
testcase_15 AC 110 ms
35,424 KB
testcase_16 AC 109 ms
35,544 KB
testcase_17 AC 108 ms
35,664 KB
testcase_18 AC 108 ms
35,280 KB
testcase_19 AC 110 ms
35,296 KB
testcase_20 AC 108 ms
35,544 KB
testcase_21 AC 109 ms
35,292 KB
testcase_22 AC 93 ms
35,552 KB
testcase_23 AC 93 ms
35,540 KB
testcase_24 AC 118 ms
35,544 KB
testcase_25 AC 26 ms
17,792 KB
testcase_26 AC 26 ms
18,000 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.Text;
using static System.Console;
using static System.Math;

namespace AtTest.DP
{
    class yuki710
    {
        static void Main(string[] args)
        {
            Method(args);
            ReadLine();
        }

        static void Method(string[] args)
        {
            int n = ReadInt();
            int[][] abs = new int[n][];
            for(int i = 0; i < n; i++)
            {
                abs[i] = ReadInts();
            }
            int length = 100000 + 1000;
            int inf = int.MaxValue / 4;
            int[] dp = new int[length];
            for (int i = 0; i < length; i++) dp[i] = inf;
            dp[0] = 0;
            for (int i = 0; i < n; i++)
            {
                int[] next = new int[length];
                for (int j = 0; j < length; j++) next[j] = inf;
                for (int j = 0; j < length; j++)
                {
                    if (dp[j] == inf) continue;

                    next[j] = Min(next[j], dp[j] + abs[i][1]);
                    int nextIndex = j + abs[i][0];
                    if (nextIndex < length)
                    {
                        next[nextIndex] = Min(next[nextIndex], dp[j]);
                    }
                }
                dp = next;
            }
            int min = int.MaxValue;
            for(int i = 0; i < length; i++)
            {
                min = Min(min, Max(i, dp[i]));
                //if (i <= 10) WriteLine(dp[i]);
            }
            WriteLine(min);
        }

        private static string Read() { return ReadLine(); }
        private static int ReadInt() { return int.Parse(Read()); }
        private static long ReadLong() { return long.Parse(Read()); }
        private static double ReadDouble() { return double.Parse(Read()); }
        private static int[] ReadInts() { return Array.ConvertAll(Read().Split(), int.Parse); }
        private static long[] ReadLongs() { return Array.ConvertAll(Read().Split(), long.Parse); }
        private static double[] ReadDoubles() { return Array.ConvertAll(Read().Split(), double.Parse); }
    }
}
0