結果

問題 No.545 ママの大事な二人の子供
ユーザー tentententen
提出日時 2023-04-07 08:29:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,819 bytes
コンパイル時間 2,730 ms
コンパイル使用メモリ 97,308 KB
実行使用メモリ 289,564 KB
最終ジャッジ日時 2024-04-10 16:11:44
合計ジャッジ時間 9,186 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,468 KB
testcase_01 AC 44 ms
50,216 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 46 ms
50,460 KB
testcase_05 AC 44 ms
50,620 KB
testcase_06 AC 43 ms
50,472 KB
testcase_07 AC 44 ms
50,424 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 46 ms
50,280 KB
testcase_12 WA -
testcase_13 AC 82 ms
52,132 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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<>();
        for (int i = 0; i < n; i++) {
            long a = sc.nextLong();
            long b = sc.nextLong();
            if (i % 2 == 0) {
                if (ev.size() == 0) {
                    ev.add(a);
                    ev.add(-b);
                } else {
                    TreeSet<Long> tmp = new TreeSet<>();
                    for (long x : ev) {
                        tmp.add(x + a);
                        tmp.add(x - b);
                    }
                    ev.addAll(tmp);
                }
            } else {
                if (od.size() == 0) {
                    od.add(-a);
                    od.add(b);
                } else {
                    TreeSet<Long> tmp = new TreeSet<>();
                    for (long x : od) {
                        tmp.add(x - a);
                        tmp.add(x + b);
                    }
                    od.addAll(tmp);
                }
            }
        }
        if (od.size() == 0) {
            od.add(0L);
        }
        od.add(Long.MAX_VALUE / 2);
        od.add(Long.MIN_VALUE / 2);
        long ans = Long.MAX_VALUE;
        for (long x : ev) {
            ans = Math.min(ans, x - od.floor(x));
            ans = Math.min(ans, od.ceiling(x) - x);
        }
        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