Submission #829965

#TimeUsernameProblemLanguageResultExecution timeMemory
829965vqpahmadStray Cat (JOI20_stray)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> #include "Anthony.h" using namespace std; #define int long long #define ll long long #define pii pair<int,int> #define F first #define S second #define endl '\n' #define pb push_back #define sz(a) (int)a.size() #define all(a) a.begin(),a.end() const int mod = 1e9 + 7; const int N = 1e6 + 15; const ll inf = 1e18; int X[N]; vector<pii> adj[N]; void dfs(int node, int par, int cur){ for (auto it : my2::adj[node]){ if (it.F == node) continue; my2::X[it.S] = (cur+1)%3; dfs(it.F, node, my2::X[it.S]); } } vector<int> Mark(int N, int M, int A, int B, vector<int> U, vector<int> V) { vector<int> x(M); for (int i=0;i<M;i++){ adj[U[i]].pb({V[i],i}); adj[V[i]].pb({U[i],i}); } dfs(1,0,-1); for (int i=0;i<M;i++){ x[i] = X[i]; } return x; } int A, B; void Init(int A, int B) { return; } int Move(vector<int> y) { if (y[0]&&y[1]) return 0; if (y[1]&&y[2]) return 1; if (y[2]&&y[0]) return 2; return -1; }

Compilation message (stderr)

Anthony.cpp: In function 'void dfs(long long int, long long int, long long int)':
Anthony.cpp:20:17: error: 'my2' has not been declared
   20 |  for (auto it : my2::adj[node]){
      |                 ^~~
Anthony.cpp:22:3: error: 'my2' has not been declared
   22 |   my2::X[it.S] = (cur+1)%3;
      |   ^~~
Anthony.cpp:23:19: error: 'my2' has not been declared
   23 |   dfs(it.F, node, my2::X[it.S]);
      |                   ^~~

/usr/bin/ld: /tmp/ccX8U9IH.o: in function `main':
grader_catherine.cpp:(.text.startup+0x41c): undefined reference to `Init(int, int)'
/usr/bin/ld: grader_catherine.cpp:(.text.startup+0xcfa): undefined reference to `Move(std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status