Submission #1130625

#TimeUsernameProblemLanguageResultExecution timeMemory
1130625lopkusWall (IOI14_wall)C++20
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include "wall.h" #define int long long using namespace std; void buildWall(int n, int k, int op[], int left[], int right[], int height[], int finalHeight[]){ for(int i = 1; i <= n; i++) { finalHeight[i] = 0; } for(int i = 1; i <= k; i++) { if(op[i] == 1) { for(int j = left[i]; j <= right[i]; j++) { finalHeight[j] = max(finalHeight[j], height[i]); } } else { for(int j = left[i]; j <= right[i]; j++) { finalHeight[j] = min(finalHeight[j], height[i]); } } } } /* signed main() { ios_base::sync_with_stdio(false); cin.tie(NULL); } */

Compilation message (stderr)

/usr/bin/ld: /tmp/ccbImlUW.o: in function `main':
grader.cpp:(.text.startup+0x133): undefined reference to `buildWall(int, int, int*, int*, int*, int*, int*)'
collect2: error: ld returned 1 exit status