제출 #789564

#제출 시각아이디문제언어결과실행 시간메모리
789564Mouad_ouj던전 (IOI21_dungeons)C++17
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h> #define int long long using namespace std; int ans=0,nn; vector<int> se,le,pe,we; void init(int n,vector<int> s,vector<int> p,vector<int> w,vector<int> l) { se.resize(n); le.resize(n); pe.resize(n); we.resize(n); nn=n; se=s; le=l; we=w; pe=p; } int self(int x,int z) { if(x==nn) return z; if(z>=se[x]) return self(we[x],z+se[x]); if(z<se[x]) return self(le[x],z+pe[x]); return 0ll; } int simulate(int x, int z) { return self(x,z); }

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

/usr/bin/ld: /tmp/ccD3khBH.o: in function `main':
grader.cpp:(.text.startup+0x3bd): undefined reference to `init(int, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >)'
/usr/bin/ld: grader.cpp:(.text.startup+0x440): undefined reference to `simulate(int, int)'
collect2: error: ld returned 1 exit status