結果
| 問題 |
No.545 ママの大事な二人の子供
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2023-04-07 08:29:28 |
| 言語 | Java (openjdk 23) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 WA * 12 TLE * 1 -- * 11 |
ソースコード
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();
}
}
tenten