結果

問題 No.2542 Yokan for Two
ユーザー tentententen
提出日時 2023-12-13 14:03:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 2,314 bytes
コンパイル時間 3,110 ms
コンパイル使用メモリ 84,136 KB
実行使用メモリ 60,748 KB
最終ジャッジ日時 2024-09-27 05:21:55
合計ジャッジ時間 8,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,424 KB
testcase_01 AC 50 ms
50,256 KB
testcase_02 AC 50 ms
50,488 KB
testcase_03 AC 66 ms
53,180 KB
testcase_04 AC 72 ms
53,576 KB
testcase_05 AC 80 ms
56,184 KB
testcase_06 AC 50 ms
50,396 KB
testcase_07 AC 88 ms
60,616 KB
testcase_08 AC 78 ms
53,552 KB
testcase_09 AC 89 ms
60,712 KB
testcase_10 AC 64 ms
50,744 KB
testcase_11 AC 79 ms
51,168 KB
testcase_12 AC 78 ms
53,664 KB
testcase_13 AC 76 ms
51,160 KB
testcase_14 AC 95 ms
60,748 KB
testcase_15 AC 98 ms
60,744 KB
testcase_16 AC 95 ms
60,644 KB
testcase_17 AC 94 ms
60,668 KB
testcase_18 AC 97 ms
60,596 KB
testcase_19 AC 87 ms
56,352 KB
testcase_20 AC 83 ms
56,364 KB
testcase_21 AC 86 ms
56,464 KB
testcase_22 AC 84 ms
56,432 KB
testcase_23 AC 84 ms
56,372 KB
testcase_24 AC 58 ms
50,464 KB
testcase_25 AC 60 ms
50,416 KB
testcase_26 AC 64 ms
50,808 KB
testcase_27 AC 64 ms
50,796 KB
testcase_28 AC 63 ms
50,644 KB
testcase_29 AC 77 ms
53,532 KB
testcase_30 AC 93 ms
60,660 KB
testcase_31 AC 95 ms
60,580 KB
testcase_32 AC 97 ms
60,512 KB
testcase_33 AC 95 ms
60,452 KB
testcase_34 AC 96 ms
60,556 KB
testcase_35 AC 95 ms
60,708 KB
testcase_36 AC 95 ms
60,368 KB
testcase_37 AC 95 ms
60,668 KB
testcase_38 AC 94 ms
60,608 KB
testcase_39 AC 97 ms
60,720 KB
testcase_40 AC 95 ms
60,704 KB
testcase_41 AC 97 ms
60,748 KB
testcase_42 AC 95 ms
60,692 KB
testcase_43 AC 97 ms
60,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int length = sc.nextInt();
        int n = sc.nextInt();
        int[] values = new int[n + 1];
        values[0] = sc.nextInt();
        int sum = values[0];
        for (int i = 1; i < n; i++) {
            values[i] = sc.nextInt() - sum;
            sum += values[i];
        }
        values[n] = length - sum;
        boolean[][] dp = new boolean[n][length];
        int max = Math.abs(values[n] - values[0]);
        dp[0][max] = true;
        for (int i = 1; i < n; i++) {
            for (int j = max; j >= 0; j--) {
                if (dp[i - 1][j]) {
                    dp[i][j + values[i]] = true;
                    dp[i][Math.abs(j - values[i])] = true;
                }
            }
            max += values[i];
        }
        for (int i = 0; ;i++) {
            if (dp[n - 1][i]) {
                System.out.println(i);
                return;
            }
        }
    }
}
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