Submission #857691

#TimeUsernameProblemLanguageResultExecution timeMemory
857691VanioSpeedrun (RMI21_speedrun)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> #include<"speedrun.h"> using namespace std; void assignHints(int st, int n, int a[], int b[]){ int i; setHintLen(n); for(i=1;i<n;i++){ setHint(a[i],b[i],1); setHint(b[i],a[i],1); } } bool f[1001]; void rec(int k, int p){ int i; f[k]=1; for(i=1;i<n;i++){ if(getHint(i) && !f[i]){ goTo(i); rec(i,k); } } goTo(p); } void speedrun(int st, int n, int start){ rec(start,0); }

Compilation message (stderr)

speedrun.cpp:2:9: fatal error: "speedrun.h": No such file or directory
    2 | #include<"speedrun.h">
      |         ^~~~~~~~~~~~~~
compilation terminated.