結果

問題 No.27 板の準備
ユーザー tentententen
提出日時 2020-10-22 17:22:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 1,429 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 77,096 KB
実行使用メモリ 45,096 KB
最終ジャッジ日時 2024-07-21 09:24:18
合計ジャッジ時間 6,415 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
43,008 KB
testcase_01 AC 154 ms
43,368 KB
testcase_02 AC 161 ms
44,508 KB
testcase_03 AC 161 ms
44,472 KB
testcase_04 AC 162 ms
44,708 KB
testcase_05 AC 159 ms
44,580 KB
testcase_06 AC 166 ms
44,376 KB
testcase_07 AC 162 ms
44,608 KB
testcase_08 AC 163 ms
45,096 KB
testcase_09 AC 166 ms
45,028 KB
testcase_10 AC 161 ms
44,748 KB
testcase_11 AC 162 ms
44,620 KB
testcase_12 AC 162 ms
44,640 KB
testcase_13 AC 166 ms
44,360 KB
testcase_14 AC 145 ms
44,228 KB
testcase_15 AC 160 ms
44,672 KB
testcase_16 AC 158 ms
44,600 KB
testcase_17 AC 162 ms
44,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] boards = new int[4];
        for (int i = 0; i < 4; i++) {
            boards[i] = sc.nextInt();
        }
        int min = Integer.MAX_VALUE;
        for (int i = 1; i <= 28; i++) {
            for (int j = i + 1; j <= 29; j++) {
                for (int k = j + 1; k <= 30; k++) {
                    int count = 0;
                    int[] values = new int[]{i, j, k};
                    for (int a = 0; a < 4; a++) {
                        int[][] dp = new int[3][boards[a] + 1];
                        count += dfw(2, boards[a], values, dp);
                        
                    }
                   min = Math.min(min, count);
                }
            }
        }
        System.out.println(min);
     }
     
     static int dfw(int idx, int length, int[] values, int[][] dp) {
         if (length == 0) {
             return 0;
         }
         if (idx < 0) {
             return Integer.MAX_VALUE / 10;
         }
         if (dp[idx][length] == 0) {
             dp[idx][length] = Integer.MAX_VALUE / 10;
             for (int i = 0; length >= i * values[idx]; i++) {
                 dp[idx][length] = Math.min(dp[idx][length], dfw(idx - 1, length - i * values[idx], values, dp) + i);
             }
         }
         return dp[idx][length];
     }
}
0