結果

問題 No.545 ママの大事な二人の子供
ユーザー tentententen
提出日時 2023-06-14 10:07:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 2,405 bytes
コンパイル時間 2,805 ms
コンパイル使用メモリ 93,004 KB
実行使用メモリ 63,728 KB
最終ジャッジ日時 2024-06-22 20:39:19
合計ジャッジ時間 8,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,308 KB
testcase_01 AC 55 ms
50,484 KB
testcase_02 AC 55 ms
50,052 KB
testcase_03 AC 55 ms
50,376 KB
testcase_04 AC 54 ms
49,968 KB
testcase_05 AC 53 ms
50,500 KB
testcase_06 AC 52 ms
50,444 KB
testcase_07 AC 55 ms
50,372 KB
testcase_08 AC 54 ms
50,064 KB
testcase_09 AC 54 ms
50,300 KB
testcase_10 AC 55 ms
50,196 KB
testcase_11 AC 54 ms
50,388 KB
testcase_12 AC 56 ms
50,296 KB
testcase_13 AC 57 ms
50,412 KB
testcase_14 AC 56 ms
50,548 KB
testcase_15 AC 55 ms
50,416 KB
testcase_16 AC 58 ms
50,348 KB
testcase_17 AC 65 ms
50,784 KB
testcase_18 AC 101 ms
52,600 KB
testcase_19 AC 102 ms
52,612 KB
testcase_20 AC 128 ms
52,608 KB
testcase_21 AC 55 ms
50,228 KB
testcase_22 AC 186 ms
58,488 KB
testcase_23 AC 286 ms
63,476 KB
testcase_24 AC 199 ms
58,320 KB
testcase_25 AC 284 ms
63,716 KB
testcase_26 AC 295 ms
63,316 KB
testcase_27 AC 266 ms
63,356 KB
testcase_28 AC 290 ms
63,728 KB
testcase_29 AC 293 ms
63,240 KB
testcase_30 AC 273 ms
63,080 KB
testcase_31 AC 281 ms
63,208 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);
        long total = 0;
        for (int i = 0; i < n; i++) {
            long a = sc.nextLong();
            long b = sc.nextLong();
            total += a;
            b += a;
            TreeSet<Long> current;
            if (i % 2 == 0) {
                current = ev;
            } else {
                current = od;
            }
            Long key = Long.MAX_VALUE;
            while ((key = current.lower(key)) != null) {
                current.add(key + b);
            }
        }
        od.add(Long.MIN_VALUE / 2);
        od.add(Long.MAX_VALUE / 2);
        long ans = Long.MAX_VALUE;
        for (Long x : ev) {
            long target = total - x;
            ans = Math.min(ans, target - od.floor(target));
            ans = Math.min(ans, od.ceiling(target) - target);
        }
        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