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;
typedef long long ll;
const int maxn = 800010;
int n, q, ptr[maxn], fa[maxn];
bool vis[maxn];
vector<int> G[maxn];
int main() {
ios::sync_with_stdio(0), cin.tie(0);
cin >> n >> q;
for (int i = 1, k; i <= n; i++) {
cin >> k;
while (k--) {
int c;
cin >> c, G[i].push_back(c);
}
}
auto dfs = [&](auto self, int u) -> void {
for (int v : G[u]) if (v ^ fa[u]) {
fa[v] = u, self(self, v);
}
};
dfs(dfs, 1);
vector<int> tmp;
ll step = 0;
for (int u = 1, cnt = 0; cnt < n || u > 1; step++) {
if (!vis[u]) vis[u] = 1, cnt++;
tmp.push_back(u = G[u][++ptr[u] %= G[u].size()]);
}
int u = 1;
vector<int> res;
for (int i = 0; i < 2 * n - 2; i++) {
res.push_back(u), u = G[u][++ptr[u] %= G[u].size()];
}
while (q--) {
ll k;
cin >> k;
if (k < step) cout << tmp[k - 1] << "\n";
else cout << res[(k - step) % (2 * n - 2)] << "\n";
}
return 0;
}
# | 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... |