This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
// Om Namah Shivaya
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
template<typename T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
typedef long long int ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL)
#define pb push_back
#define endl '\n'
#define sz(a) a.size()
#define setbits(x) __builtin_popcountll(x)
#define ff first
#define ss second
#define conts continue
#define ceil2(x, y) ((x + y - 1) / (y))
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define yes cout << "Yes" << endl
#define no cout << "No" << endl
#define rep(i, n) for(int i = 0; i < n; ++i)
#define rep1(i, n) for(int i = 1; i <= n; ++i)
#define rev(i, s, e) for(int i = s; i >= e; --i)
#define trav(i, a) for(auto &i : a)
template<typename T>
void amin(T &a, T b) {
a = min(a, b);
}
template<typename T>
void amax(T &a, T b) {
a = max(a, b);
}
#ifdef LOCAL
#include "debug.h"
#else
#define debug(x) 42
#endif
/*
*/
const int MOD = 1e9 + 7;
const int N = 1e5 + 5;
const int inf1 = int(1e9) + 5;
const ll inf2 = ll(1e18) + 5;
vector<pll> adj[N];
struct lca_algo {
// LCA template (for graphs with 1-based indexing)
int LOG = 1;
vector<int> depth;
vector<vector<int>> up;
lca_algo() {
}
lca_algo(int n) {
lca_init(n);
}
void lca_init(int n) {
while ((1 << LOG) < n) LOG++;
up = vector<vector<int>>(n + 1, vector<int>(LOG, 1));
depth = vector<int>(n + 1);
lca_dfs(1, -1);
}
void lca_dfs(int node, int par) {
for(auto [child, id] : adj[node]) {
if (child == par) conts;
up[child][0] = node;
rep1(j, LOG - 1) {
up[child][j] = up[up[child][j - 1]][j - 1];
}
depth[child] = depth[node] + 1;
lca_dfs(child, node);
}
}
int lift(int u, int k) {
rep(j, LOG) {
if (k & (1 << j)) {
u = up[u][j];
}
}
return u;
}
int query(int u, int v) {
if (depth[u] < depth[v]) swap(u, v);
int k = depth[u] - depth[v];
u = lift(u, k);
if (u == v) return u;
rev(j, LOG - 1, 0) {
if (up[u][j] != up[v][j]) {
u = up[u][j];
v = up[v][j];
}
}
u = up[u][0];
return u;
}
int get_dis(int u, int v) {
int lca = query(u, v);
return depth[u] + depth[v] - 2 * depth[lca];
}
};
vector<ll> tin(N), tout(N);
vector<pll> par(N);
ll timer = 1;
void dfs(ll u, ll p){
tin[u] = timer++;
for(auto [v, id] : adj[u]) {
if(v == p) conts;
par[v] = {u, id};
dfs(v,u);
}
tout[u] = timer++;
}
void solve(int test_case)
{
ll n,m,need; cin >> n >> m >> need;
rep1(i,n-1){
ll u,v; cin >> u >> v;
adj[u].pb({v, i}), adj[v].pb({u, i});
}
dfs(1,-1);
lca_algo LCA(n);
vector<ll> cnt(n+5);
auto upd = [&](ll u, ll v){
while(u != v){
auto [p, id] = par[u];
cnt[id]++;
u = p;
}
};
while(m--){
ll k; cin >> k;
vector<pll> a(k);
rep(j,k){
ll u; cin >> u;
a[j] = {tin[u], u};
}
sort(all(a));
vector<pll> b;
rep(i,k){
b.pb({LCA.depth[a[i].ss], a[i].ss});
if(i+1 < k){
ll lca = LCA.query(a[i].ss, a[i+1].ss);
b.pb({LCA.depth[lca], lca});
}
}
sort(rall(b));
b.resize(unique(all(b)) - b.begin());
set<pll> st;
for(auto [d, u] : b){
ll l = tin[u], r = tout[u];
auto it = st.lower_bound({l,-1});
vector<pll> torem;
for(; it != st.end() and it->first <= r; ++it){
torem.pb(*it);
upd(it->second, u);
}
trav(p,torem){
st.erase(p);
}
st.insert({tin[u], u});
}
assert(sz(st) == 1);
}
vector<ll> ans;
rep1(i,n-1){
if(cnt[i] >= need){
ans.pb(i);
}
}
cout << sz(ans) << endl;
trav(x,ans) cout << x << " ";
cout << endl;
}
int main()
{
fastio;
int t = 1;
// cin >> t;
rep1(i, t) {
solve(i);
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |