Submission #871869

# Submission time Handle Problem Language Result Execution time Memory
871869 2023-11-11T18:22:20 Z Mr_Ph Speedrun (RMI21_speedrun) C++14
0 / 100
10 ms 744 KB
#include "speedrun.h"
#include <bits/stdc++.h>
//#include "grader.cpp"
using namespace std;
int lol,st;
void assignHints(int subtask, int n, int a[], int b[]) { 
    setHintLen(n);
   // cout<<"HI"<<endl;
    for(int i=1;i<n;i++)
    {
        setHint(a[i],b[i],1);
        setHint(b[i],a[i],1);
    }
    lol=n;
}
void dfs(int node,int parent)
{
    for(int i=1;i<=lol;i++)
    {
        if(i==parent)continue;
        if(getHint(i))
        {
            goTo(i);
            dfs(i,node);
        }
    }
    if(node!=st)
        goTo(parent);
}
void speedrun(int subtask, int n, int start) { /* your solution here */
    st=start;
    dfs(st,0);
}
# Verdict Execution time Memory Grader output
1 Incorrect 10 ms 744 KB Solution didn't visit every node
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB The length is too large
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB The length is too large
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB The length is too large
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB The length is too large
2 Halted 0 ms 0 KB -