結果

問題 No.1675 Strange Minimum Query
ユーザー ks2mks2m
提出日時 2021-09-10 21:38:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,285 ms / 2,000 ms
コード長 1,387 bytes
コンパイル時間 2,826 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 87,292 KB
最終ジャッジ日時 2024-06-11 22:52:25
合計ジャッジ時間 32,075 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
37,740 KB
testcase_01 AC 65 ms
37,768 KB
testcase_02 AC 65 ms
37,924 KB
testcase_03 AC 549 ms
52,564 KB
testcase_04 AC 579 ms
53,640 KB
testcase_05 AC 315 ms
49,776 KB
testcase_06 AC 547 ms
54,056 KB
testcase_07 AC 624 ms
57,396 KB
testcase_08 AC 70 ms
38,356 KB
testcase_09 AC 135 ms
40,812 KB
testcase_10 AC 997 ms
63,536 KB
testcase_11 AC 395 ms
53,576 KB
testcase_12 AC 1,082 ms
64,324 KB
testcase_13 AC 902 ms
64,364 KB
testcase_14 AC 1,158 ms
87,292 KB
testcase_15 AC 1,149 ms
78,320 KB
testcase_16 AC 64 ms
37,568 KB
testcase_17 AC 397 ms
48,944 KB
testcase_18 AC 498 ms
51,172 KB
testcase_19 AC 644 ms
56,384 KB
testcase_20 AC 933 ms
59,692 KB
testcase_21 AC 868 ms
60,612 KB
testcase_22 AC 1,008 ms
64,148 KB
testcase_23 AC 803 ms
55,168 KB
testcase_24 AC 801 ms
55,564 KB
testcase_25 AC 660 ms
51,100 KB
testcase_26 AC 499 ms
50,872 KB
testcase_27 AC 833 ms
63,340 KB
testcase_28 AC 612 ms
55,868 KB
testcase_29 AC 526 ms
56,844 KB
testcase_30 AC 518 ms
52,144 KB
testcase_31 AC 905 ms
56,560 KB
testcase_32 AC 1,009 ms
66,952 KB
testcase_33 AC 1,038 ms
63,724 KB
testcase_34 AC 1,046 ms
63,356 KB
testcase_35 AC 1,285 ms
73,268 KB
testcase_36 AC 1,235 ms
73,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.PriorityQueue;
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 q = Integer.parseInt(sa[1]);
		PriorityQueue<Obj> que = new PriorityQueue<>((o1, o2) -> o2.b - o1.b);
		for (int i = 0; i < q; i++) {
			sa = br.readLine().split(" ");
			Obj o = new Obj();
			o.l = Integer.parseInt(sa[0]) - 1;
			o.r = Integer.parseInt(sa[1]);
			o.b = Integer.parseInt(sa[2]);
			que.add(o);
		}
		br.close();

		int[] a = new int[n];
		Arrays.fill(a, 1);
		TreeSet<Integer> set = new TreeSet<>();
		for (int i = 0; i < n; i++) {
			set.add(i);
		}
		Obj pre = null;
		while (!que.isEmpty()) {
			Obj o = que.poll();
			Set<Integer> ss = set.subSet(o.l, o.r);
			if (pre != null && o.b < pre.b && ss.isEmpty()) {
				System.out.println(-1);
				return;
			}
			for (int i : ss) {
				a[i] = o.b;
			}
			ss.clear();
			pre = o;
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
			sb.append(a[i]).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}

	static class Obj {
		int l, r, b;
	}
}
0