結果
問題 | No.878 Range High-Element Query |
ユーザー | tenten |
提出日時 | 2022-08-29 14:05:14 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 798 ms / 2,000 ms |
コード長 | 2,411 bytes |
コンパイル時間 | 2,431 ms |
コンパイル使用メモリ | 78,948 KB |
実行使用メモリ | 77,888 KB |
最終ジャッジ日時 | 2024-11-06 11:53:21 |
合計ジャッジ時間 | 11,235 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
50,548 KB |
testcase_01 | AC | 86 ms
51,388 KB |
testcase_02 | AC | 105 ms
51,812 KB |
testcase_03 | AC | 84 ms
51,416 KB |
testcase_04 | AC | 95 ms
51,332 KB |
testcase_05 | AC | 102 ms
51,348 KB |
testcase_06 | AC | 69 ms
50,572 KB |
testcase_07 | AC | 67 ms
50,540 KB |
testcase_08 | AC | 104 ms
51,392 KB |
testcase_09 | AC | 106 ms
51,436 KB |
testcase_10 | AC | 82 ms
51,340 KB |
testcase_11 | AC | 731 ms
75,640 KB |
testcase_12 | AC | 699 ms
75,420 KB |
testcase_13 | AC | 704 ms
70,560 KB |
testcase_14 | AC | 550 ms
65,792 KB |
testcase_15 | AC | 684 ms
74,748 KB |
testcase_16 | AC | 763 ms
77,888 KB |
testcase_17 | AC | 788 ms
77,612 KB |
testcase_18 | AC | 798 ms
77,592 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int q = sc.nextInt(); PriorityQueue<Unit> queue = new PriorityQueue<>(); for (int i = 0; i < n; i++) { queue.add(new Unit(sc.nextInt(), i)); } TreeSet<Integer> idxes = new TreeSet<>(); idxes.add(n); int[][] nexts = new int[17][n + 1]; while (queue.size() > 0) { Unit u = queue.poll(); nexts[0][u.idx] = idxes.higher(u.idx); idxes.add(u.idx); } nexts[0][n] = n; for (int i = 1; i < 17; i++) { for (int j = 0; j <= n; j++) { nexts[i][j] = nexts[i - 1][nexts[i - 1][j]]; } } StringBuilder sb = new StringBuilder(); while (q-- > 0) { sc.nextInt(); int left = sc.nextInt() - 1; int right = sc.nextInt() - 1; int ans = 1; for (int i = 16; i >= 0; i--) { if (nexts[i][left] <= right) { left = nexts[i][left]; ans += (1 << i); } } sb.append(ans).append("\n"); } System.out.print(sb); } static class Unit implements Comparable<Unit> { int value; int idx; public Unit(int value, int idx) { this.value = value; this.idx = idx; } public int compareTo(Unit another) { return another.value - value; } } } 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 String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }