結果

問題 No.545 ママの大事な二人の子供
ユーザー tentententen
提出日時 2023-01-31 08:43:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 2,488 bytes
コンパイル時間 3,248 ms
コンパイル使用メモリ 96,292 KB
実行使用メモリ 71,592 KB
最終ジャッジ日時 2024-06-30 13:53:44
合計ジャッジ時間 9,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,592 KB
testcase_01 AC 55 ms
50,492 KB
testcase_02 AC 54 ms
50,296 KB
testcase_03 AC 53 ms
50,712 KB
testcase_04 AC 53 ms
50,508 KB
testcase_05 AC 53 ms
50,388 KB
testcase_06 AC 55 ms
50,472 KB
testcase_07 AC 53 ms
50,264 KB
testcase_08 AC 53 ms
49,940 KB
testcase_09 AC 55 ms
52,156 KB
testcase_10 AC 54 ms
50,396 KB
testcase_11 AC 54 ms
50,464 KB
testcase_12 AC 54 ms
50,516 KB
testcase_13 AC 56 ms
50,484 KB
testcase_14 AC 57 ms
50,448 KB
testcase_15 AC 54 ms
50,104 KB
testcase_16 AC 59 ms
50,168 KB
testcase_17 AC 68 ms
51,700 KB
testcase_18 AC 104 ms
52,616 KB
testcase_19 AC 110 ms
52,616 KB
testcase_20 AC 133 ms
54,908 KB
testcase_21 AC 52 ms
50,232 KB
testcase_22 AC 218 ms
60,124 KB
testcase_23 AC 346 ms
71,592 KB
testcase_24 AC 232 ms
60,484 KB
testcase_25 AC 368 ms
71,280 KB
testcase_26 AC 370 ms
71,548 KB
testcase_27 AC 362 ms
71,392 KB
testcase_28 AC 349 ms
71,568 KB
testcase_29 AC 358 ms
71,520 KB
testcase_30 AC 383 ms
71,236 KB
testcase_31 AC 359 ms
71,548 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 n = sc.nextInt();
        TreeSet<Long> ev = new TreeSet<>();
        TreeSet<Long> od = new TreeSet<>();
        ev.add(0L);
        od.add(0L);
        for (int i = 0; i < n; i++) {
            TreeSet<Long> tmp;
            if (i % 2 == 0) {
                tmp = ev;
            } else {
                tmp = od;
            }
            TreeSet<Long> next = new TreeSet<>();
            long a = sc.nextLong();
            long b = sc.nextLong();
            for (long x : tmp) {
                next.add(x + a);
                next.add(x - b);
            }
            if (i % 2 == 0) {
                ev  = next;
            } else {
                od = next;
            }
        }
        od.add(Long.MAX_VALUE / 2);
        od.add(Long.MIN_VALUE / 2);
        long ans = Long.MAX_VALUE;
        for (long x : ev) {
            long left = Math.abs(x + od.floor(-x));
            long right = Math.abs(x + od.ceiling(-x));
            ans = Math.min(ans, left);
            ans = Math.min(ans, right);
        }
        System.out.println(ans);
    }
}

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