import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
int n = kb.nextInt();
int m = kb.nextInt();
int[] bucket = new int[n];
for(int t=0; t<m; t++) {
int i = kb.nextInt();
int j = kb.nextInt();
int k = kb.nextInt();
for(int s=i; s<=j; s++) {
bucket[s-1] = k;
}
}
for(int x: bucket) {
System.out.print(x+ " ");
}
}
}
'공부기록 > 백준' 카테고리의 다른 글
[백준] 11866번 요세푸스 문제 0 (0) | 2023.12.05 |
---|---|
[백준] 1715번 카드 정렬하기 (0) | 2023.11.22 |
[백준] 11660번 구간 합 구하기 5 (1) | 2023.11.21 |
[백준] 11508번 2+1 세일 (2) | 2023.11.21 |
[백준] 18310번 안테나 (0) | 2023.11.21 |