# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
463614 | 2021-08-11T11:10:26 Z | vanic | Mousetrap (CEOI17_mousetrap) | C++14 | 1046 ms | 95684 KB |
#include <iostream> #include <cstdio> #include <cmath> #include <algorithm> #include <vector> using namespace std; const int maxn=1e6+5; vector < int > ms[maxn]; int gore[maxn]; bool bio[maxn]; int dp[maxn]; void dfs(int x, int prosl){ int br=0; for(int i=0; i<(int)ms[x].size(); i++){ if(bio[ms[x][i]]){ br++; } } dp[x]=ms[x].size()-1-br; int maksi=0, drugi=0; for(int i=0; i<(int)ms[x].size(); i++){ if(ms[x][i]!=prosl && !bio[ms[x][i]]){ dfs(ms[x][i], x); if(dp[ms[x][i]]>maksi){ drugi=maksi; maksi=dp[ms[x][i]]; } else if(dp[ms[x][i]]>drugi){ drugi=dp[ms[x][i]]; } } } bio[x]=1; dp[x]+=drugi; } void rokaj(int x, int prosl){ gore[x]=prosl; for(int i=0; i<(int)ms[x].size(); i++){ if(ms[x][i]!=prosl){ rokaj(ms[x][i], x); } } } vector < int > val[maxn]; int main(){ int n, t, m; scanf("%d%d%d", &n, &t, &m); t--; m--; int a, b; for(int i=0; i<n-1; i++){ scanf("%d%d", &a, &b); a--; b--; ms[a].push_back(b); ms[b].push_back(a); } if(n==1){ printf("0\n"); return 0; } rokaj(t, t); dfs(t, t); int sol=0; int x=m; int prosl=m; int sad=0; int svi=0; while(gore[x]!=x){ for(int i=0; i<(int)ms[x].size(); i++){ if(ms[x][i]!=gore[x] && ms[x][i]!=prosl){ svi++; val[sad].push_back(dp[ms[x][i]]); } } sad++; prosl=x; x=gore[x]; } int uk=sad; for(int i=0; i<uk; i++){ sort(val[i].begin(), val[i].end()); } x=m; int token=0; for(int i=0; i<uk; i++){ int maksi=0, ind=-1; token++; while(token){ for(int j=i; j<uk; j++){ if((int)val[j].size()>j-i){ if(maksi<val[j][j-i]){ maksi=val[j][j-i]; ind=j; } } } if(ind==-1){ break; } else{ val[ind].pop_back(); token--; } } sol=max(sol, val[i].back()+svi); svi-=val[i].size(); } printf("%d\n", sol); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 67 ms | 95684 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 408 ms | 87536 KB | Output is correct |
2 | Correct | 389 ms | 83636 KB | Output is correct |
3 | Correct | 1038 ms | 88716 KB | Output is correct |
4 | Correct | 478 ms | 68176 KB | Output is correct |
5 | Correct | 1010 ms | 88716 KB | Output is correct |
6 | Incorrect | 1046 ms | 88768 KB | Output isn't correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 67 ms | 95684 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 67 ms | 95684 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |