Submission #64890

#TimeUsernameProblemLanguageResultExecution timeMemory
64890daniel_02Boxes with souvenirs (IOI15_boxes)C++17
Compilation error
0 ms0 KiB
#include "boxes.h" #include <bits/stdc++.h> 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 (p[i] <= L / 2) { ans += (p[i] * 2LL); } else { ans += ((L - p[i]) * 2LL); } } } else if (K == N) { for (int i = 0; i < n; i++) { ans += a[i]; } } else { assert(0); } return ans; }

Compilation message (stderr)

boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:24:29: error: 'n' was not declared in this scope
         for (int i = 0; i < n; i++)
                             ^
boxes.cpp:26:20: error: 'a' was not declared in this scope
             ans += a[i];
                    ^