結果
問題 | No.1332 Range Nearest Query |
ユーザー | ks2m |
提出日時 | 2021-01-08 23:12:18 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,699 bytes |
コンパイル時間 | 4,110 ms |
コンパイル使用メモリ | 78,920 KB |
実行使用メモリ | 222,508 KB |
最終ジャッジ日時 | 2024-11-16 16:25:02 |
合計ジャッジ時間 | 123,710 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
57,148 KB |
testcase_01 | AC | 51 ms
154,044 KB |
testcase_02 | AC | 51 ms
57,192 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 2,443 ms
210,192 KB |
testcase_08 | AC | 2,427 ms
124,296 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 2,382 ms
118,704 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 2,161 ms
116,360 KB |
testcase_13 | AC | 2,116 ms
214,944 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | AC | 342 ms
62,696 KB |
testcase_29 | AC | 341 ms
127,600 KB |
testcase_30 | AC | 366 ms
62,808 KB |
testcase_31 | AC | 339 ms
151,836 KB |
testcase_32 | AC | 370 ms
51,476 KB |
testcase_33 | AC | 386 ms
114,792 KB |
testcase_34 | AC | 356 ms
51,312 KB |
testcase_35 | AC | 355 ms
108,220 KB |
testcase_36 | AC | 358 ms
51,256 KB |
testcase_37 | AC | 345 ms
133,356 KB |
testcase_38 | TLE | - |
testcase_39 | AC | 1,399 ms
134,412 KB |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.ArrayList; import java.util.List; import java.util.TreeSet; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); String[] sa = br.readLine().split(" "); int[] x = new int[n]; for (int i = 0; i < n; i++) { x[i] = Integer.parseInt(sa[i]); } int rn = (int) Math.sqrt(n) + 1; List<TreeSet<Integer>> list = new ArrayList<>(rn); for (int i = 0; i < rn; i++) { int start = rn * i; int end = Math.min(n, start + rn); TreeSet<Integer> set = new TreeSet<>(); set.add(-1000000000); set.add(2000000000); for (int j = start; j < end; j++) { set.add(x[j]); } list.add(set); } int q = Integer.parseInt(br.readLine()); PrintWriter pw = new PrintWriter(System.out); for (int i = 0; i < q; i++) { sa = br.readLine().split(" "); int l = Integer.parseInt(sa[0]) - 1; int r = Integer.parseInt(sa[1]); int y = Integer.parseInt(sa[2]); int ll = (l - 1) / rn + 1; int rr = r / rn; int ans = Integer.MAX_VALUE; int end = Math.min(ll * rn, r); for (int j = l; j < end; j++) { ans = Math.min(ans, Math.abs(x[j] - y)); } for (int j = ll; j < rr; j++) { TreeSet<Integer> set = list.get(j); int ol = set.floor(y); ans = Math.min(ans, y - ol); int or = set.ceiling(y); ans = Math.min(ans, or - y); } for (int j = Math.max(rr * rn, l); j < r; j++) { ans = Math.min(ans, Math.abs(x[j] - y)); } pw.println(ans); } pw.flush(); br.close(); } }