結果

問題 No.527 ナップサック容量問題
ユーザー りあんりあん
提出日時 2016-05-23 22:56:27
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 1,534 bytes
コンパイル時間 1,514 ms
コンパイル使用メモリ 107,648 KB
実行使用メモリ 19,412 KB
最終ジャッジ日時 2024-04-16 10:27:00
合計ジャッジ時間 4,142 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,108 KB
testcase_01 AC 29 ms
19,120 KB
testcase_02 AC 29 ms
18,984 KB
testcase_03 AC 30 ms
19,108 KB
testcase_04 AC 28 ms
18,980 KB
testcase_05 AC 45 ms
19,140 KB
testcase_06 AC 64 ms
19,160 KB
testcase_07 AC 56 ms
19,276 KB
testcase_08 AC 42 ms
19,000 KB
testcase_09 AC 28 ms
18,980 KB
testcase_10 AC 64 ms
19,164 KB
testcase_11 AC 53 ms
19,020 KB
testcase_12 AC 47 ms
19,140 KB
testcase_13 AC 65 ms
19,292 KB
testcase_14 AC 41 ms
18,996 KB
testcase_15 AC 49 ms
19,272 KB
testcase_16 AC 29 ms
19,244 KB
testcase_17 AC 46 ms
19,392 KB
testcase_18 AC 48 ms
19,012 KB
testcase_19 AC 30 ms
19,124 KB
testcase_20 AC 42 ms
19,252 KB
testcase_21 AC 70 ms
19,304 KB
testcase_22 AC 56 ms
19,152 KB
testcase_23 AC 69 ms
19,152 KB
testcase_24 AC 35 ms
19,372 KB
testcase_25 AC 55 ms
19,152 KB
testcase_26 AC 52 ms
19,020 KB
testcase_27 AC 52 ms
19,148 KB
testcase_28 AC 49 ms
19,140 KB
testcase_29 AC 70 ms
19,164 KB
testcase_30 AC 32 ms
19,104 KB
testcase_31 AC 46 ms
19,128 KB
testcase_32 AC 50 ms
19,012 KB
testcase_33 AC 48 ms
19,000 KB
testcase_34 AC 52 ms
19,412 KB
testcase_35 AC 51 ms
19,004 KB
testcase_36 AC 29 ms
18,988 KB
testcase_37 AC 45 ms
19,120 KB
testcase_38 AC 49 ms
19,260 KB
testcase_39 AC 48 ms
19,268 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;

class Program
{
    const int M = 1000000007;
    static void Main()
    {
        var sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
        var sc = new Scan();
        int n = sc.Int;
        int lim = 100010;
        var dp = new int[lim];
        for (int i = 1; i < lim; i++)
            dp[i] = M;
        
        for (int i = 0; i < n; i++)
        {
            int v, w;
            sc.Multi(out v, out w);
            for (int j = lim - 1; j > v; j--)
                dp[j] = Math.Min(dp[j], dp[j - v] + w);
            for (int j = v; j > 0; j--)
                dp[j] = Math.Min(dp[j], w);
        }
        int V = sc.Int;
        sw.WriteLine(dp[V] > 0 ? dp[V] : 1);
        sw.WriteLine(dp[V + 1] < M ? (dp[V + 1] - 1).ToString() : "inf");
        sw.Flush();
    }
}
class Scan
{
    public int Int { get { return int.Parse(Str); } }
    public long Long { get { return long.Parse(Str); } }
    public string Str { get { return Console.ReadLine().Trim(); } }
    public int[] IntArr { get { return StrArr.Select(int.Parse).ToArray(); } }
    public long[] LongArr { get { return StrArr.Select(long.Parse).ToArray(); } }
    public string[] StrArr { get { return Str.Split(); } }
    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]; }
}
0