Submission #933614

#TimeUsernameProblemLanguageResultExecution timeMemory
933614vjudge1Speedrun (RMI21_speedrun)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include <speedrun.h> using namespace std; void assignHints (int subtask , int N, int A[], int B[]) { setHintLen(1); vector<int>adj(N+1); for (int i = 0; i < N; i++) { adj[A[i]]++; adj[B[i]]++; } for (int i = 0; i < N+1; i++) { if (adj[A[i]] == 1) continue; setHint(i, 1, 1); } } void speedrun(int subtask , int N, int start ) { getHintLen(); bool yo = getHint(1); int jefe; if (!yo) { for (int i = 1; i < N+1; i++) { if (i == start) continue; if (!goTo(i)) continue; jefe = i; break; } } else jefe = start; for (int i = 1; i <= N; i++) { if (i == jefe) continue; goTo(i); goTo(jefe); } }

Compilation message (stderr)

speedrun.cpp: In function 'void speedrun(int, int, int)':
speedrun.cpp:23:2: error: 'getHintLen' was not declared in this scope; did you mean 'setHintLen'?
   23 |  getHintLen();
      |  ^~~~~~~~~~
      |  setHintLen