Submission #642830

#TimeUsernameProblemLanguageResultExecution timeMemory
642830idasSpring cleaning (CEOI20_cleaning)C++11
53 / 100
1076 ms25868 KiB
#include <bits/stdc++.h> #define f first #define s second #define pb push_back #define sz(x) ((int)((x).size())) #define le(vec) vec[vec.size()-1] #define all(x) (x).begin(), (x).end() #define TSTS int ttt; cin >> ttt; while(ttt--) solve() #define FAST_IO ios_base::sync_with_stdio(0); cin.tie(nullptr) #define FOR(i, begin, end) for(int i = (begin); i < (end); i++) using namespace std; typedef long long ll; typedef long double ld; typedef vector<int> vi; typedef map<int, int> mii; typedef pair<int, int> pii; typedef pair<long long, long long> pll; typedef pair<long double, long double> pdd; const int INF=1e9, MOD=1e9+7, mod=998244353; const ll LINF=1e18; void setIO() { FAST_IO; } void setIO(string s) { FAST_IO; freopen((s+".txt").c_str(), "r", stdin); freopen((s+".out").c_str(), "w", stdout); } const int N=1e5+10; //tot - total amount of leaves in a subtree //add - number of added leaves to each query for each N node //bad_ch - number of bad vertices changed during dfs int n, q, tot[N], bad_ch[N], add_leaves[N], add_edges[N]; map<int, int> add[N]; vi ad[N]; void pre(int u, int pst) { for(auto x : ad[u]){ if(x==pst) continue; pre(x, u); tot[u]+=tot[x]; } if(sz(ad[u])==1) tot[u]++; } void dfs(int u, int pst) { for(auto x : ad[u]){ if(x==pst) continue; dfs(x, u); } int mx=sz(add[u]), mxu=u; for(auto x : ad[u]){ if(x==pst) continue; if(sz(add[x])>mx){ mx=sz(add[x]); mxu=x; } } if(mxu!=u) swap(add[u], add[mxu]); for(auto x : ad[u]){ if(x==pst) continue; for(auto it : add[x]){ add[u][it.f]+=it.s; } add[x].clear(); } for(auto it : add[u]){ if(it.s&1){ if(tot[u]&1){ bad_ch[it.f]++; } else{ bad_ch[it.f]--; } } } } int main() { setIO(); cin >> n >> q; FOR(i, 0, n-1) { int a, b; cin >> a >> b; a--; b--; ad[a].pb(b); ad[b].pb(a); } pre(0, -1); FOR(i, 0, q) { set<int> st; int d; cin >> d; FOR(j, 0, d) { int a; cin >> a; --a; if(sz(ad[a])==1){ if(st.count(a)){ add[a][i]++; add_leaves[i]++; } else{ st.insert(a); } } else{ add[a][i]++; add_leaves[i]++; } } add_edges[i]=d; } int tot_bad=-1; //(we exclude root as it has no parent vertex) FOR(i, 0, n) { if(tot[i]&1^1){ ++tot_bad; } } int tot_leaf=0; FOR(i, 0, n) { if(sz(ad[i])==1){ ++tot_leaf; } } dfs(0, -1); FOR(i, 0, q) { if((tot_leaf+add_leaves[i])&1){ cout << "-1\n"; continue; } cout << n-1+add_edges[i]+tot_bad+bad_ch[i] << '\n'; } }

Compilation message (stderr)

cleaning.cpp: In function 'int main()':
cleaning.cpp:135:18: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
  135 |         if(tot[i]&1^1){
      |            ~~~~~~^~
cleaning.cpp: In function 'void setIO(std::string)':
cleaning.cpp:32:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   32 |     freopen((s+".txt").c_str(), "r", stdin);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cleaning.cpp:33:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   33 |     freopen((s+".out").c_str(), "w", stdout);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...