제출 #954378

#제출 시각아이디문제언어결과실행 시간메모리
954378Kakarot벽 (IOI14_wall)C++98
컴파일 에러
0 ms0 KiB
#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]); } } }

컴파일 시 표준 에러 (stderr) 메시지

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]);
      |                             ^~~