# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
521761 | Hamed5001 | Ball Machine (BOI13_ballmachine) | C++14 | 105 ms | 19088 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.
#include <bits/stdc++.h>
using namespace std;
const int mxN = 1e5 + 1, LOG = 20;
int N, Q;
int priority[mxN], mnSub[mxN], parentBL[mxN][LOG];
bool hasBall[mxN];
vector<int> adj[mxN];
priority_queue<pair<int, int>> emp;
void dfs1(int node) {
mnSub[node] = node;
for (auto it : adj[node]) {
dfs1(it);
mnSub[node] = min(mnSub[node], mnSub[it]);
}
}
int idpr = 0;
void dfs2(int node) {
for (auto it : adj[node]) {
dfs2(it);
}
priority[node] = idpr++;
}
void init() {
dfs1(1);
for (int i = 0; i <= N; ++i) {
sort(adj[i].begin(), adj[i].end(), [](int node1, int node2){
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... |