結果

問題 No.527 ナップサック容量問題
ユーザー tentententen
提出日時 2022-10-14 15:31:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 2,034 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 78,780 KB
実行使用メモリ 45,912 KB
最終ジャッジ日時 2024-06-26 12:38:34
合計ジャッジ時間 7,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,960 KB
testcase_01 AC 51 ms
37,020 KB
testcase_02 AC 50 ms
37,152 KB
testcase_03 AC 50 ms
36,964 KB
testcase_04 AC 50 ms
37,168 KB
testcase_05 AC 95 ms
39,092 KB
testcase_06 AC 156 ms
41,628 KB
testcase_07 AC 141 ms
41,016 KB
testcase_08 AC 93 ms
39,156 KB
testcase_09 AC 51 ms
37,028 KB
testcase_10 AC 178 ms
43,004 KB
testcase_11 AC 117 ms
40,060 KB
testcase_12 AC 98 ms
39,680 KB
testcase_13 AC 194 ms
43,500 KB
testcase_14 AC 80 ms
38,592 KB
testcase_15 AC 112 ms
40,372 KB
testcase_16 AC 50 ms
37,196 KB
testcase_17 AC 96 ms
39,804 KB
testcase_18 AC 106 ms
39,628 KB
testcase_19 AC 51 ms
36,940 KB
testcase_20 AC 79 ms
39,156 KB
testcase_21 AC 202 ms
43,928 KB
testcase_22 AC 130 ms
40,820 KB
testcase_23 AC 201 ms
43,980 KB
testcase_24 AC 57 ms
37,108 KB
testcase_25 AC 122 ms
40,436 KB
testcase_26 AC 131 ms
40,704 KB
testcase_27 AC 119 ms
40,728 KB
testcase_28 AC 112 ms
40,168 KB
testcase_29 AC 246 ms
45,912 KB
testcase_30 AC 51 ms
36,668 KB
testcase_31 AC 88 ms
38,812 KB
testcase_32 AC 81 ms
39,288 KB
testcase_33 AC 79 ms
38,900 KB
testcase_34 AC 98 ms
39,288 KB
testcase_35 AC 91 ms
38,808 KB
testcase_36 AC 50 ms
36,968 KB
testcase_37 AC 75 ms
38,392 KB
testcase_38 AC 84 ms
38,796 KB
testcase_39 AC 84 ms
38,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        TreeMap<Integer, Integer> values = new TreeMap<>();
        values.put(0, 0);
        for (int i = 0; i < n; i++) {
            int v = sc.nextInt();
            int w = sc.nextInt();
            Integer key = Integer.MAX_VALUE;
            while ((key = values.lowerKey(key)) != null) {
                Integer next = key + v;
                int wnext = values.get(key) + w;
                if (values.lastKey() < next || values.ceilingEntry(next).getValue() > wnext) {
                    values.put(next, wnext);
                }
                while ((next = values.lowerKey(next)) != null) {
                    if (values.get(next) >= wnext) {
                        values.remove(next);
                    } else {
                        break;
                    }
                }
            }
        }
        values.put(0, 1);
        int v = sc.nextInt();
        System.out.println(values.get(v));
        if (values.lastKey() == v) {
            System.out.println("inf");
        } else {
            System.out.println(values.higherEntry(v).getValue() - 1);
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0