답안 #954378

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
954378 2024-03-27T17:56:25 Z Kakarot 벽 (IOI14_wall) C++
컴파일 오류
0 ms 0 KB
#include "wall.h"

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[k]);
      else finalHeight[j] = min(finalHeight[j], height[k]);
    }
  }
}

Compilation message

wall.cpp: In function 'void buildWall(int, int, int*, int*, int*, int*, int*)':
wall.cpp:6:39: error: 'max' was not declared in this scope
    6 |       if(op[i] == 1) finalHeight[j] = max(finalHeight[j], height[k]);
      |                                       ^~~
wall.cpp:7:29: error: 'min' was not declared in this scope
    7 |       else finalHeight[j] = min(finalHeight[j], height[k]);
      |                             ^~~