結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | tenten |
提出日時 | 2023-04-07 08:29:28 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,819 bytes |
コンパイル時間 | 3,773 ms |
コンパイル使用メモリ | 84,812 KB |
実行使用メモリ | 278,212 KB |
最終ジャッジ日時 | 2024-10-02 18:29:42 |
合計ジャッジ時間 | 12,080 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
55,400 KB |
testcase_01 | AC | 54 ms
49,784 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 54 ms
50,408 KB |
testcase_05 | AC | 55 ms
50,420 KB |
testcase_06 | AC | 56 ms
50,212 KB |
testcase_07 | AC | 54 ms
49,936 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 60 ms
50,380 KB |
testcase_12 | WA | - |
testcase_13 | AC | 98 ms
52,108 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 | -- | - |
ソースコード
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(); } }