제출 #402889

#제출 시각아이디문제언어결과실행 시간메모리
402889EJOI2019Andrew선물상자 (IOI15_boxes)C++14
컴파일 에러
0 ms0 KiB
#include "boxes.h" long long delivery(int N, int K,int L, int p[]) { if(K==1) { int ans = 0; for(int i = 0; i < N; ++i) ans+=min(p[i],L-p[i])*2; return ans; } }

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

boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:8:18: error: 'min' was not declared in this scope
    8 |             ans+=min(p[i],L-p[i])*2;
      |                  ^~~
boxes.cpp:12:1: warning: control reaches end of non-void function [-Wreturn-type]
   12 | }
      | ^