Submission #934459

# Submission time Handle Problem Language Result Execution time Memory
934459 2024-02-27T10:52:46 Z zhasyn Wall (IOI14_wall) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include <wall.h>
using namespace std;

void buildWall(int n, int k, vector <int> op, vector <int> left, vector <int> right,
vector <int> h, vector <int> &ans){
	for(int i = 0; i < n; i++){
		ans.push_back(0);
	}
	for(int i = 0; i < k; i++){
		for(int j = left[i]; j <= right[i]; j++){
			if(op[i] == 1) ans[j] = max(h[i], ans[j]);
			else ans[j] = min(ans[j], h[i]);
		}
	}
}

Compilation message

/usr/bin/ld: /tmp/ccZDCGbb.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