結果

問題 No.54 Happy Hallowe'en
ユーザー tentententen
提出日時 2021-03-03 20:07:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 4,502 ms / 5,000 ms
コード長 1,539 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 510,692 KB
最終ジャッジ日時 2024-10-03 08:59:27
合計ジャッジ時間 23,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,976 KB
testcase_01 AC 54 ms
36,972 KB
testcase_02 AC 54 ms
37,100 KB
testcase_03 AC 53 ms
37,132 KB
testcase_04 AC 640 ms
174,680 KB
testcase_05 AC 1,065 ms
216,024 KB
testcase_06 AC 1,565 ms
327,888 KB
testcase_07 AC 2,403 ms
401,712 KB
testcase_08 AC 3,129 ms
399,760 KB
testcase_09 AC 4,008 ms
505,644 KB
testcase_10 AC 53 ms
48,240 KB
testcase_11 AC 54 ms
48,116 KB
testcase_12 AC 3,139 ms
505,892 KB
testcase_13 AC 4,502 ms
510,692 KB
testcase_14 AC 55 ms
50,596 KB
testcase_15 AC 55 ms
51,936 KB
testcase_16 AC 64 ms
50,368 KB
testcase_17 AC 67 ms
50,616 KB
testcase_18 AC 62 ms
50,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static House[] houses;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        houses = new House[n];
        for (int i = 0; i < n; i++) {
            String[] line = br.readLine().split(" ", 2);
            houses[i] = new House(Integer.parseInt(line[0]), Integer.parseInt(line[1]));
        }
        Arrays.sort(houses);
        dp = new int[n][10001];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n - 1, 0));
    }
    
    static int dfw(int idx, int value) {
        if (idx < 0) {
            return 0;
        }
        if (value > 10000) {
            return 0;
        }
        if (dp[idx][value] < 0) {
            dp[idx][value] = dfw(idx - 1, value);
            if (houses[idx].limit > value) {
                dp[idx][value] = Math.max(dp[idx][value], dfw(idx - 1, value + houses[idx].gain) + houses[idx].gain);
            }
        }
        return dp[idx][value];
    }
    
    static class House implements Comparable<House> {
        int gain;
        int limit;
        
        public House(int gain, int limit) {
            this.gain = gain;
            this.limit = limit;
        }
        
        public int compareTo(House another) {
            return another.limit + another.gain - limit - gain;
        }
    }
}
0