제출 #64910

#제출 시각아이디문제언어결과실행 시간메모리
64910mirbek01선물상자 (IOI15_boxes)C++17
컴파일 에러
0 ms0 KiB
#include "boxes.h"

# include <bits/stdc++.h>

using namespace std;

long long delivery(int N, int K, int L, int p[]) {
      long long ans = 0;

      if(K == 1){
            for(int i = 0; i < N; i ++){
                  if((L - p[i]) > p[i])
                        ans += p[i] * 2;
                  else
                        ans += (L - p[i]) * 2;
            }
      } else {
            sort(p, p + N);
            ans = L;
            for(int i = 0; i < N - 1; i ++){
                  if(ans > ((p[i] * 2ll) + (L - p[i + 1]) * 2ll))
                        ans = (p[i] * 2ll) + (L - p[i + 1]) * 2ll;
            }
            if(ans > p[N - 1] * 2)
                  ans = p[N - 1] * 2;
            if(ans > (L - P[N - 1]) * 2)
                  ans = (L - P[n - 1]) * 2;
      }

      return ans;
}

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

boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:26:27: error: 'P' was not declared in this scope
             if(ans > (L - P[N - 1]) * 2)
                           ^
boxes.cpp:27:32: error: 'n' was not declared in this scope
                   ans = (L - P[n - 1]) * 2;
                                ^