Recent Posts
Notice
No Rules Rules
공 넣기 (feat. 백준, 10810번) 본문
728x90
반응형
공 넣기
https://www.acmicpc.net/problem/10810
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, M, arr[101]{0};
cin >> N >> M;
for(register int m = 0, i, j, k; m < M; ++m){
cin >> i >> j >> k;
for(register int t = i; t <= j; ++t)
arr[t] = k;
}
for(register int n = 1; n <= N; ++n)
cout << arr[n] << " ";
return 0;
}
// *&)*@*
반응형
값을 대입하면서 가장 마지막의 값을 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
빵집 (feat. 백준, 3109번) (0) | 2023.02.22 |
---|---|
월드컵 (feat. 백준, 6987번) (0) | 2023.02.22 |
2023년은 검은 토끼의 해 (feat. 백준, 27494번) (0) | 2023.02.21 |
코딩은 체육과목 입니다 (feat. 백준, 25314번) (0) | 2023.02.21 |
슈퍼 마리오 (feat. 백준, 2851번) (0) | 2023.02.20 |
Comments