結果

問題 No.905 Sorted?
ユーザー ks2mks2m
提出日時 2019-10-11 22:03:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 1,490 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 86,132 KB
実行使用メモリ 64,536 KB
最終ジャッジ日時 2024-05-04 01:41:05
合計ジャッジ時間 10,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,336 KB
testcase_01 AC 52 ms
37,204 KB
testcase_02 AC 47 ms
37,156 KB
testcase_03 AC 47 ms
37,216 KB
testcase_04 AC 48 ms
37,412 KB
testcase_05 AC 101 ms
39,748 KB
testcase_06 AC 90 ms
39,348 KB
testcase_07 AC 155 ms
41,712 KB
testcase_08 AC 588 ms
54,972 KB
testcase_09 AC 476 ms
52,568 KB
testcase_10 AC 637 ms
61,692 KB
testcase_11 AC 552 ms
52,952 KB
testcase_12 AC 639 ms
53,776 KB
testcase_13 AC 681 ms
64,136 KB
testcase_14 AC 720 ms
64,536 KB
testcase_15 AC 611 ms
56,088 KB
testcase_16 AC 484 ms
54,876 KB
testcase_17 AC 631 ms
58,016 KB
testcase_18 AC 560 ms
59,912 KB
testcase_19 AC 47 ms
37,336 KB
testcase_20 AC 46 ms
37,328 KB
testcase_21 AC 47 ms
37,300 KB
testcase_22 AC 45 ms
37,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
	}
}
0