Submission #934455

#TimeUsernameProblemLanguageResultExecution timeMemory
934455vjudge1Wall (IOI14_wall)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #define pb push_back #define pf push_front using namespace std; #define F first #define S second mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); typedef long long ll; #define pii pair <int, int> #define pll pair <ll, ll> typedef long double ld; const ll N = 2 * 1e5 + 10, M = 1e6 + 10, inf = 1e18; const ll mod = 1e9 + 7; ll um(ll a, ll b){ return (1LL * a * b) % mod; } ll subr(ll a, ll b){ return ((1LL * a - b) % mod + mod) % mod; } 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.pb(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 (stderr)

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