# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
127070 | 2019-07-08T20:56:19 Z | Lawliet | Mousetrap (CEOI17_mousetrap) | C++14 | 1209 ms | 68044 KB |
#include <bits/stdc++.h> #define MAX 1000010 using namespace std; typedef long long int lli; int n; int mouse, trap; int n1, n2; int pai[MAX]; lli dp[MAX]; vector<int> grafo[MAX]; void DFSInit(int i, int p) { for(int g = 0 ; g < grafo[i].size() ; g++) { int prox = grafo[i][g]; if(prox == p) continue; pai[prox] = i; DFSInit(prox , i); } } void DFS(int i, int p, int blockI, int blockProx) { if(grafo[i].size() == 1 && i != trap) { dp[i] = 0; return; } vector<int> aux; aux.push_back( 0 ); for(int g = 0 ; g < grafo[i].size() ; g++) { int prox = grafo[i][g]; if(prox == p) continue; if(blockI == i && blockProx == prox) continue; pai[prox] = i; //printf("i = %d prox = %d\n",i,prox); DFS(prox , i , blockI , blockProx); aux.push_back( dp[prox] ); } sort(aux.begin() , aux.end()); dp[i] = grafo[i].size() - 2 + aux[aux.size() - 2] + 1; if(i == blockI) dp[i]--; //printf("dp(%d) = %lld\n",i,dp[i]); } int main() { scanf("%d %d %d",&n,&trap,&mouse); for(int g = 0 ; g < n - 1 ; g++) { scanf("%d %d",&n1,&n2); grafo[n1].push_back(n2); grafo[n2].push_back(n1); } DFSInit(trap , trap); DFS(trap , trap , 0 , 0); int aux = pai[mouse]; int sum = 0; while(aux != trap) { sum += grafo[aux].size() - 2; aux = pai[aux]; } //printf("dp = %d sum = %d\n",dp[mouse],sum); lli ans = dp[mouse] + sum; int cur = pai[mouse]; int last = mouse; //int sum = 0; while(cur != trap) { DFS(trap , trap , cur , last); //printf("cur = %d\n",cur); aux = pai[cur]; sum = 0; while(aux != trap) { sum += grafo[aux].size() - 2; aux = pai[aux]; } //printf("dp = %d sum = %d\n",dp[cur],sum); ans = max(ans , dp[cur] + sum); last = cur; cur = pai[last]; } printf("%lld\n",ans); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 22 ms | 23928 KB | Output is correct |
2 | Correct | 23 ms | 23800 KB | Output is correct |
3 | Correct | 23 ms | 23928 KB | Output is correct |
4 | Correct | 23 ms | 23800 KB | Output is correct |
5 | Incorrect | 22 ms | 23800 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 539 ms | 66884 KB | Output is correct |
2 | Correct | 485 ms | 62556 KB | Output is correct |
3 | Correct | 1130 ms | 68020 KB | Output is correct |
4 | Correct | 667 ms | 46076 KB | Output is correct |
5 | Correct | 1209 ms | 68044 KB | Output is correct |
6 | Correct | 1143 ms | 68040 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 22 ms | 23928 KB | Output is correct |
2 | Correct | 23 ms | 23800 KB | Output is correct |
3 | Correct | 23 ms | 23928 KB | Output is correct |
4 | Correct | 23 ms | 23800 KB | Output is correct |
5 | Incorrect | 22 ms | 23800 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 22 ms | 23928 KB | Output is correct |
2 | Correct | 23 ms | 23800 KB | Output is correct |
3 | Correct | 23 ms | 23928 KB | Output is correct |
4 | Correct | 23 ms | 23800 KB | Output is correct |
5 | Incorrect | 22 ms | 23800 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |