結果

問題 No.27 板の準備
ユーザー tentententen
提出日時 2023-01-26 09:17:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 2,741 bytes
コンパイル時間 2,984 ms
コンパイル使用メモリ 86,704 KB
実行使用メモリ 51,796 KB
最終ジャッジ日時 2023-09-09 13:16:28
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
51,180 KB
testcase_01 AC 56 ms
50,800 KB
testcase_02 AC 68 ms
51,296 KB
testcase_03 AC 67 ms
51,288 KB
testcase_04 AC 61 ms
51,352 KB
testcase_05 AC 57 ms
50,908 KB
testcase_06 AC 62 ms
51,388 KB
testcase_07 AC 69 ms
51,124 KB
testcase_08 AC 70 ms
51,544 KB
testcase_09 AC 61 ms
50,996 KB
testcase_10 AC 61 ms
51,536 KB
testcase_11 AC 63 ms
51,312 KB
testcase_12 AC 69 ms
50,972 KB
testcase_13 AC 69 ms
51,796 KB
testcase_14 AC 68 ms
51,348 KB
testcase_15 AC 69 ms
51,424 KB
testcase_16 AC 68 ms
51,420 KB
testcase_17 AC 69 ms
51,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] dp;
    static int[] lengths;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int[] plates = new int[4];
        for (int i = 0; i < 4; i++) {
            plates[i] = sc.nextInt();
        }
        dp = new int[3][31];
        lengths = new int[3];
        long ans = Long.MAX_VALUE;
        for (int i = 1; i <= 30; i++) {
            lengths[0] = i;
            for (int j = i + 1; j <= 30; j++) {
                lengths[1] = j;
                for (int k = j + 1; k <= 30; k++) {
                    lengths[2] = k;
                    for (int[] arr : dp) {
                        Arrays.fill(arr, -1);
                    }
                    long sum = 0;
                    for (int l = 0; l < 4; l++) {
                        sum += dfw(2, plates[l]);
                    }
                    ans = Math.min(ans, sum);
                }
            }
        }
        System.out.println(ans);
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (v == 0) {
            return 0;
        }
        if (idx < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = dfw(idx - 1, v);
            dp[idx][v] = Math.min(dp[idx][v], dfw(idx, v - lengths[idx]) + 1);
        }
        return dp[idx][v];
    }
}

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