# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
966374 | 2024-04-19T18:49:19 Z | anton | Spring cleaning (CEOI20_cleaning) | C++17 | 1000 ms | 10300 KB |
#include<bits/stdc++.h> using namespace std; #define int long long #define pii pair<int, int> typedef complex<int> point; const int MAX_N = 100000; vector<vector<int>> adj; vector<int> parity; vector<int> anc; vector<int> cost = {2, 1}; int total_cost= 0; int count_leaves(int u, int a){ int s= 0; for(auto v: adj[u]){ if(v!=a){ anc[v] = u; s+=count_leaves(v, u); } } if(s==0){ s=1; } if(s%2==0){ total_cost += 2; } else{ total_cost ++; } //cout<<u+1<<" "<<s<<endl; parity[u] = s%2; return s %2; } void flip(int u){ //cout<<"flip "<<u+1<<endl; total_cost -= cost[parity[u]]; parity[u] ^= 1; total_cost+=cost[parity[u]]; if(anc[u]!=-1){ flip(anc[u]); } } signed main(){ cin.tie(NULL); ios_base::sync_with_stdio(false); int n, k; cin>>n>>k; adj.resize(n); parity.resize(n); anc.resize(n, -1); int node = 0; int deg= 0; for(int i = 0; i<n-1; i++){ int a, b; cin>>a>>b; a--;b--; adj[a].push_back(b); adj[b].push_back(a); if(adj[a].size()>deg){ node =a; deg = adj[a].size(); } if(adj[b].size()>deg){ node =b; deg = adj[b].size(); } } int r=count_leaves(node, -1); if(r%2==0){ total_cost-=2; } else{ total_cost--; } //cout<<"base "<<total_cost<<endl; for(int i = 0; i<k; i++){ int d; cin>>d; vector<int> parents; for(int j = 0; j<d; j++){ int v; cin>>v; v--; parents.push_back(v); adj[parents.back()].push_back(adj.size()); total_cost++; if(adj[parents.back()].size()>2){ flip(parents.back()); r^=1; } } if(r%2==1){ cout<<-1<<endl; } else{ cout<<total_cost<<endl; } adj.resize(n); for(auto e: parents){ if(adj[e].size()>2){ flip(e); r^=1; } total_cost--; adj[e].pop_back(); } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 32 ms | 2244 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 9 ms | 2516 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 752 ms | 3096 KB | Output is correct |
2 | Correct | 883 ms | 2968 KB | Output is correct |
3 | Correct | 579 ms | 10048 KB | Output is correct |
4 | Execution timed out | 1077 ms | 10244 KB | Time limit exceeded |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1029 ms | 2900 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 112 ms | 6384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 196 ms | 10300 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 32 ms | 2244 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |