結果
問題 | No.27 板の準備 |
ユーザー |
![]() |
提出日時 | 2023-01-26 09:17:49 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 83 ms / 5,000 ms |
コード長 | 2,741 bytes |
コンパイル時間 | 3,685 ms |
コンパイル使用メモリ | 91,348 KB |
実行使用メモリ | 51,436 KB |
最終ジャッジ日時 | 2024-06-27 06:15:28 |
合計ジャッジ時間 | 5,654 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 18 |
ソースコード
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();}}