結果

問題 No.527 ナップサック容量問題
ユーザー mbanmban
提出日時 2017-06-10 22:53:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,629 bytes
コンパイル時間 897 ms
コンパイル使用メモリ 112,572 KB
実行使用メモリ 27,492 KB
最終ジャッジ日時 2024-09-24 15:47:07
合計ジャッジ時間 3,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
25,124 KB
testcase_01 AC 30 ms
25,324 KB
testcase_02 AC 31 ms
25,320 KB
testcase_03 AC 31 ms
27,364 KB
testcase_04 AC 31 ms
25,252 KB
testcase_05 AC 37 ms
25,068 KB
testcase_06 AC 49 ms
25,368 KB
testcase_07 AC 43 ms
23,144 KB
testcase_08 AC 36 ms
25,320 KB
testcase_09 AC 31 ms
25,320 KB
testcase_10 AC 49 ms
27,160 KB
testcase_11 AC 40 ms
25,328 KB
testcase_12 AC 38 ms
27,492 KB
testcase_13 AC 50 ms
25,196 KB
testcase_14 AC 35 ms
27,280 KB
testcase_15 AC 39 ms
25,468 KB
testcase_16 AC 29 ms
23,216 KB
testcase_17 AC 36 ms
25,320 KB
testcase_18 AC 38 ms
27,164 KB
testcase_19 AC 31 ms
27,036 KB
testcase_20 AC 36 ms
27,236 KB
testcase_21 AC 53 ms
25,248 KB
testcase_22 AC 43 ms
25,192 KB
testcase_23 AC 50 ms
25,320 KB
testcase_24 AC 33 ms
25,248 KB
testcase_25 AC 42 ms
25,320 KB
testcase_26 AC 41 ms
27,244 KB
testcase_27 AC 41 ms
25,192 KB
testcase_28 AC 39 ms
25,260 KB
testcase_29 AC 53 ms
24,984 KB
testcase_30 AC 31 ms
25,064 KB
testcase_31 AC 35 ms
25,456 KB
testcase_32 AC 36 ms
25,128 KB
testcase_33 AC 36 ms
25,452 KB
testcase_34 AC 36 ms
27,408 KB
testcase_35 AC 40 ms
27,372 KB
testcase_36 AC 30 ms
27,108 KB
testcase_37 AC 37 ms
25,324 KB
testcase_38 AC 39 ms
25,008 KB
testcase_39 AC 37 ms
25,236 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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

class Program
{
    static void Main()
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    private int N;
    private int[] v, w;
    private int V;
    const int Max = 100000;
    private void Scan()
    {
        N = int.Parse(Console.ReadLine());
        v = new int[N];
        w = new int[N];
        for (int i = 0; i < N; i++)
        {
            var line = Console.ReadLine().Split(' ');
            v[i] = int.Parse(line[0]);
            w[i] = int.Parse(line[1]);
        }
        V = int.Parse(Console.ReadLine());
    }

    public void Solve()
    {
        Scan();
        var dp = (new int[Max + 1]).Select(i => -1).ToArray();
        dp[0] = 0;
        for (int i = 0; i < N; i++)
        {
            for (int j = Max; j >= 0; j--)
            {
                if (dp[j] != -1)
                {
                    dp[j + w[i]] = Math.Max(dp[j + w[i]], dp[j] + v[i]);
                }
            }
        }
        int min = -1;
        int max = -1;
        for (int i = 0; i <= Max; i++)
        {
            if (dp[i] == V && min == -1)
            {
                min = i;
            }
            if(dp[i]>V&&max == -1)
            {
                max = i - 1;
            }
        }


        Console.WriteLine(Math.Max(1,min));
        if (max == -1)
        {
            Console.WriteLine("inf");
        }
        else
        {
            Console.WriteLine(max);
        }
    }
}
0