結果

問題 No.54 Happy Hallowe'en
ユーザー tentententen
提出日時 2021-03-03 19:59:59
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,365 bytes
コンパイル時間 3,077 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 443,040 KB
最終ジャッジ日時 2024-10-03 08:46:30
合計ジャッジ時間 31,168 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
46,412 KB
testcase_01 AC 133 ms
41,392 KB
testcase_02 AC 132 ms
41,616 KB
testcase_03 AC 141 ms
41,400 KB
testcase_04 AC 893 ms
172,528 KB
testcase_05 AC 1,483 ms
243,476 KB
testcase_06 AC 2,066 ms
327,228 KB
testcase_07 AC 3,022 ms
354,840 KB
testcase_08 AC 3,827 ms
403,284 KB
testcase_09 AC 4,803 ms
437,960 KB
testcase_10 AC 131 ms
41,344 KB
testcase_11 AC 129 ms
41,176 KB
testcase_12 AC 4,241 ms
437,660 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static House[] houses;
    static int[][] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        houses = new House[n];
        for (int i = 0; i < n; i++) {
            houses[i] = new House(sc.nextInt(), sc.nextInt());
        }
        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