# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
950019 | TrinhKhanhDung | 벽 (IOI14_wall) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <wall.h>
using namespace std;
void buildWall(int n, int k, int op[], int left[], int right[], int height[], int finalHeight[]){
for(int i=0; i<k; i++){
for(int j=left[i]; j<=right[i]; j++){
if(op[i] == 1){
finalHeight[j] = max(finalHeight[j], height[i]);
}
else{
finalHeight[j] = min(finalHeight[j], height[i]);
}
}
}
}
const int MAX_N = 2e6 + 10;
const int MAX_K = 5e5 + 10;
int op[MAX_K], Left[MAX_K], Right[MAX_K], height[MAX_K], finalHeight[MAX_N];
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
int n, k;
cin >> n >> k;
for(int i=0; i<k; i++){
cin >> op[i] >> Left[i] >> Right[i] >> height[i];
}
buildWall(n, k, op, Left, Right, height, finalHeight);
for(int i=0; i<n; i++){
cout << finalHeight[i] << ' ';
}
return 0;
}