結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー ks2mks2m
提出日時 2024-02-23 21:57:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,029 ms / 2,500 ms
コード長 1,432 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 79,572 KB
実行使用メモリ 77,760 KB
最終ジャッジ日時 2024-09-29 06:30:18
合計ジャッジ時間 28,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,724 KB
testcase_01 AC 56 ms
50,304 KB
testcase_02 AC 439 ms
63,460 KB
testcase_03 AC 241 ms
56,748 KB
testcase_04 AC 557 ms
63,176 KB
testcase_05 AC 506 ms
63,496 KB
testcase_06 AC 361 ms
58,172 KB
testcase_07 AC 502 ms
61,480 KB
testcase_08 AC 351 ms
57,612 KB
testcase_09 AC 825 ms
76,376 KB
testcase_10 AC 821 ms
76,528 KB
testcase_11 AC 807 ms
76,304 KB
testcase_12 AC 808 ms
76,672 KB
testcase_13 AC 812 ms
75,772 KB
testcase_14 AC 814 ms
76,228 KB
testcase_15 AC 826 ms
76,788 KB
testcase_16 AC 968 ms
75,948 KB
testcase_17 AC 1,027 ms
76,176 KB
testcase_18 AC 999 ms
75,988 KB
testcase_19 AC 1,029 ms
77,572 KB
testcase_20 AC 978 ms
76,344 KB
testcase_21 AC 947 ms
76,288 KB
testcase_22 AC 979 ms
76,572 KB
testcase_23 AC 830 ms
76,412 KB
testcase_24 AC 854 ms
76,144 KB
testcase_25 AC 847 ms
76,692 KB
testcase_26 AC 829 ms
77,760 KB
testcase_27 AC 847 ms
77,136 KB
testcase_28 AC 832 ms
76,124 KB
testcase_29 AC 823 ms
76,880 KB
testcase_30 AC 958 ms
76,940 KB
testcase_31 AC 860 ms
76,236 KB
testcase_32 AC 679 ms
73,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Set;
import java.util.TreeSet;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
//		int a = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		TreeSet<Obj> set = new TreeSet<>();
		for (int i = 0; i < n; i++) {
			Obj o = new Obj();
			o.i = i;
			o.x = Integer.parseInt(sa[i]);
			set.add(o);
		}

		int t = Integer.parseInt(br.readLine());
		int[] l = new int[t];
		int[] r = new int[t];
		for (int i = 0; i < t; i++) {
			sa = br.readLine().split(" ");
			l[i] = Integer.parseInt(sa[0]);
			r[i] = Integer.parseInt(sa[1]) + 1;
		}
		br.close();

		int[] ans = new int[n];
		Arrays.fill(ans, -1);
		Obj o1 = new Obj();
		Obj o2 = new Obj();
		for (int i = t - 1; i >= 0; i--) {
			o1.x = l[i];
			o2.x = r[i];
			Set<Obj> ss = set.subSet(o1, o2);
			for (Obj o : ss) {
				ans[o.i] = i + 1;
			}
			ss.clear();
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i : ans) {
			pw.println(i);
		}
		pw.flush();
	}

	static class Obj implements Comparable<Obj> {
		int i, x;

		@Override
		public int compareTo(Obj o) {
			if (x != o.x) {
				return x - o.x;
			}
			return i - o.i;
		}
	}
}
0