結果

問題 No.54 Happy Hallowe'en
ユーザー tentententen
提出日時 2023-08-10 13:11:19
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 2,581 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 94,124 KB
実行使用メモリ 713,068 KB
最終ジャッジ日時 2024-04-28 06:24:49
合計ジャッジ時間 9,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
37,172 KB
testcase_01 AC 44 ms
36,880 KB
testcase_02 AC 46 ms
37,268 KB
testcase_03 AC 46 ms
36,932 KB
testcase_04 MLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static House[] houses;
    static ArrayList<HashMap<Integer, Integer>> dp = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        houses = new House[n];
        for (int i = 0; i < n; i++) {
            houses[i] = new House(sc.nextInt(), sc.nextInt());
            dp.add(new HashMap<>());
        }
        Arrays.sort(houses);
        System.out.println(dfw(n - 1, 0));
    }
    
    static int dfw(int idx, int v) {
        if (idx < 0) {
            return v;
        }
        if (!dp.get(idx).containsKey(v)) {
            if (houses[idx].limit > v) {
                dp.get(idx).put(v, Math.max(dfw(idx - 1, v), dfw(idx - 1, v + houses[idx].value)));
            } else {
                dp.get(idx).put(v, dfw(idx - 1, v));
            }
        }
        return dp.get(idx).get(v);
    }
    
    static class House implements Comparable<House> {
        int value;
        int limit;
        
        public House(int value, int limit) {
            this.value = value;
            this.limit = limit;
        }
        
        public int compareTo(House another) {
            return (another.limit + another.value) - (limit + value);
        }
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0