Submission #764864

# Submission time Handle Problem Language Result Execution time Memory
764864 2023-06-24T05:59:39 Z vjudge1 Speedrun (RMI21_speedrun) C++17
0 / 100
34 ms 47520 KB
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <bitset>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include "speedrun.h"

// Akhmet Issa

using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define ent "\n"

const int maxn = 1e6 + 100;
const ll INF = (ll)2e18;
const int inf = (ll)2e9;
const int maxl = 20;
const int MOD = 1e9 + 7;

vector<int> g[maxn];
int used[maxn];

void assignHints(int subtask, int n, int A [], int B []){
    for(int i = 1; i < n; i++){
        g[A[i]].push_back(B[i]);
        g[B[i]].push_back(A[i]);
    }
    setHintLen(n);
    for(int i = 1; i <= n; i++){
        for(int to: g[i]){
            setHint(i, to, 1);
        }
    }
}

void speedrun(int subtask, int n, int start){
    used[start] = 1;
    for(int i = 1; i <= n; i++){
        if(getHint(i) && !used[i]){
            speedrun(subtask, n, i);
        }
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 34 ms 47520 KB Solution didn't visit every node
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 23760 KB The length is too large
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 23760 KB The length is too large
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 23760 KB The length is too large
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 13 ms 23792 KB The length is too large
2 Halted 0 ms 0 KB -