結果
問題 | No.905 Sorted? |
ユーザー | ks2m |
提出日時 | 2019-10-11 22:03:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 709 ms / 2,000 ms |
コード長 | 1,490 bytes |
コンパイル時間 | 2,176 ms |
コンパイル使用メモリ | 78,856 KB |
実行使用メモリ | 74,120 KB |
最終ジャッジ日時 | 2024-11-25 07:30:58 |
合計ジャッジ時間 | 10,559 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
50,420 KB |
testcase_01 | AC | 52 ms
50,144 KB |
testcase_02 | AC | 50 ms
49,980 KB |
testcase_03 | AC | 50 ms
49,880 KB |
testcase_04 | AC | 49 ms
50,096 KB |
testcase_05 | AC | 113 ms
51,948 KB |
testcase_06 | AC | 78 ms
51,804 KB |
testcase_07 | AC | 153 ms
54,832 KB |
testcase_08 | AC | 544 ms
64,748 KB |
testcase_09 | AC | 466 ms
62,024 KB |
testcase_10 | AC | 555 ms
65,548 KB |
testcase_11 | AC | 545 ms
65,004 KB |
testcase_12 | AC | 612 ms
64,652 KB |
testcase_13 | AC | 634 ms
73,964 KB |
testcase_14 | AC | 709 ms
74,120 KB |
testcase_15 | AC | 579 ms
65,244 KB |
testcase_16 | AC | 505 ms
64,720 KB |
testcase_17 | AC | 602 ms
66,628 KB |
testcase_18 | AC | 585 ms
69,004 KB |
testcase_19 | AC | 51 ms
50,380 KB |
testcase_20 | AC | 49 ms
50,464 KB |
testcase_21 | AC | 50 ms
50,388 KB |
testcase_22 | AC | 49 ms
50,352 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.TreeMap; 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(" "); long[] a = new long[n]; for (int i = 0; i < n; i++) { a[i] = Long.parseLong(sa[i]); } int q = Integer.parseInt(br.readLine()); int[] l = new int[q]; int[] r = new int[q]; for (int i = 0; i < q; i++) { sa = br.readLine().split(" "); l[i] = Integer.parseInt(sa[0]); r[i] = Integer.parseInt(sa[1]); } br.close(); TreeMap<Integer, Integer> map1 = new TreeMap<>(); TreeMap<Integer, Integer> map2 = new TreeMap<>(); int idx1 = 0; int idx2 = 0; for (int i = 1; i < n; i++) { if (a[i - 1] > a[i]) { map1.put(idx1, i - 1); idx1 = i; } if (a[i - 1] < a[i]) { map2.put(idx2, i - 1); idx2 = i; } } map1.put(idx1, n - 1); map2.put(idx2, n - 1); PrintWriter pw = new PrintWriter(System.out); for (int i = 0; i < q; i++) { if (l[i] == r[i]) { pw.println("1 1"); } else { idx1 = map1.floorKey(l[i]); if (r[i] <= map1.get(idx1)) { pw.print("1 "); } else { pw.print("0 "); } idx2 = map2.floorKey(l[i]); if (r[i] <= map2.get(idx2)) { pw.println("1"); } else { pw.println("0"); } } } pw.flush(); } }