結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
25,200 KB
testcase_01 AC 31 ms
25,340 KB
testcase_02 AC 31 ms
27,368 KB
testcase_03 AC 31 ms
27,392 KB
testcase_04 AC 30 ms
25,080 KB
testcase_05 AC 46 ms
23,020 KB
testcase_06 AC 65 ms
25,328 KB
testcase_07 AC 58 ms
25,084 KB
testcase_08 AC 43 ms
25,344 KB
testcase_09 AC 30 ms
27,100 KB
testcase_10 AC 65 ms
25,332 KB
testcase_11 AC 55 ms
27,112 KB
testcase_12 AC 48 ms
25,328 KB
testcase_13 AC 65 ms
23,292 KB
testcase_14 AC 42 ms
25,068 KB
testcase_15 AC 51 ms
25,204 KB
testcase_16 AC 31 ms
27,236 KB
testcase_17 AC 48 ms
27,120 KB
testcase_18 AC 49 ms
25,324 KB
testcase_19 AC 31 ms
27,244 KB
testcase_20 AC 44 ms
25,328 KB
testcase_21 AC 72 ms
25,068 KB
testcase_22 AC 58 ms
27,368 KB
testcase_23 AC 71 ms
25,096 KB
testcase_24 AC 37 ms
25,320 KB
testcase_25 AC 57 ms
23,408 KB
testcase_26 AC 54 ms
24,944 KB
testcase_27 AC 54 ms
25,060 KB
testcase_28 AC 50 ms
25,076 KB
testcase_29 AC 70 ms
25,204 KB
testcase_30 AC 32 ms
25,200 KB
testcase_31 AC 47 ms
25,472 KB
testcase_32 AC 51 ms
27,240 KB
testcase_33 AC 49 ms
25,448 KB
testcase_34 AC 52 ms
27,388 KB
testcase_35 AC 52 ms
27,240 KB
testcase_36 AC 31 ms
27,240 KB
testcase_37 AC 46 ms
25,216 KB
testcase_38 AC 50 ms
23,040 KB
testcase_39 AC 49 ms
25,336 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