# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
642933 | danikoynov | Speedrun (RMI21_speedrun) | C++14 | 161 ms | 892 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/**
* user: koynov-b21
* fname: Daniel Iliev
* lname: Koynov
* task: Speedrun
* score: 100.0
* date: 2021-12-16 11:34:19.470183
*/
#include<bits/stdc++.h>
#include "speedrun.h"
using namespace std;
const int maxn = 1010;
vector < int > g[maxn], ch[maxn];
int deg[maxn], par[maxn], nxt[maxn];
vector < int > trav;
void assignDfs(int v, int p)
{
trav.push_back(v);
for (int i = 0; i < g[v].size(); i ++)
{
int u = g[v][i];
if (u == p)
continue;
par[u] = v;
assignDfs(u, v);
}
}
void assignHints(int subtask, int N, int A[], int B[])
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |