結果

問題 No.1675 Strange Minimum Query
ユーザー ks2mks2m
提出日時 2021-09-10 21:35:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,341 bytes
コンパイル時間 2,533 ms
コンパイル使用メモリ 86,440 KB
実行使用メモリ 78,020 KB
最終ジャッジ日時 2024-06-11 22:47:07
合計ジャッジ時間 32,475 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
37,740 KB
testcase_01 AC 65 ms
37,736 KB
testcase_02 AC 65 ms
37,972 KB
testcase_03 AC 574 ms
52,672 KB
testcase_04 AC 605 ms
56,760 KB
testcase_05 AC 325 ms
49,092 KB
testcase_06 AC 595 ms
53,696 KB
testcase_07 AC 634 ms
57,328 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 921 ms
65,060 KB
testcase_14 AC 1,171 ms
76,836 KB
testcase_15 AC 1,190 ms
78,020 KB
testcase_16 AC 66 ms
37,740 KB
testcase_17 AC 406 ms
47,968 KB
testcase_18 AC 503 ms
50,700 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,025 ms
65,772 KB
testcase_23 AC 856 ms
55,016 KB
testcase_24 AC 813 ms
55,772 KB
testcase_25 AC 690 ms
50,924 KB
testcase_26 WA -
testcase_27 AC 884 ms
63,928 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 918 ms
56,836 KB
testcase_32 AC 1,058 ms
64,640 KB
testcase_33 AC 1,082 ms
64,856 KB
testcase_34 AC 1,108 ms
63,552 KB
testcase_35 AC 1,357 ms
73,188 KB
testcase_36 AC 1,320 ms
73,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
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];
		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