# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
759058 | 2023-06-15T17:40:41 Z | Ronin13 | Pastiri (COI20_pastiri) | C++14 | 1000 ms | 78192 KB |
#include <bits/stdc++.h> #define ll long long #define ull unsigned ll #define f first #define s second #define pii pair<int,int> #define pll pair<ll,ll> #define pb push_back #define epb emplace_back using namespace std; const int nmax = 500001; int x[nmax], d[nmax]; bool active[nmax]; int dp[nmax]; vector <vector <int> > g(nmax); void dfs(int v, int e = -1){ for(int to : g[v]){ if(to == e) continue; dfs(to, v); d[v] = min(d[v], d[to] + 1); } } vector <int> ans; void DFS(int v, int e = -1){ for(int to : g[v]){ if(to == e) continue; DFS(to, v); active[v] |= active[to]; dp[v] = max(dp[v], dp[to] - 1); } if(!active[v]) return; if(v == 1 && active[v]){ if(dp[v] >= d[v]) return; ans.pb(v); dp[v] = -1; return; } if(x[e] == d[v] + 1){ if(dp[v] >= d[v]) active[v] = false; return; } active[v] = false; if(dp[v] >= d[v]) return; dp[v] = d[v]; ans.pb(v); } int main(){ //ios_base::sync_with_stdio(false); cin.tie(0); int n, k; scanf("%d%d",&n, &k); for(int i = 1; i < n; i++){ int u, v; scanf("%d%d", &u, &v); g[u].pb(v); g[v].pb(u); } //int k; cin >> k; for(int i = 1; i <= n; i++){ x[i] = d[i] = 1e9; dp[i] = -1e9; } queue <int> q; for(int i = 1; i <= k; ++i){ int y; scanf("%d", &y); q.push(y); active[y] = true; x[y] = d[y] = 0; } while(!q.empty()){ int v = q.front(); q.pop(); for(int to : g[v]){ if(x[to] <= x[v]) continue; x[to] = x[v] + 1; q.push(to); } } dfs(1); DFS(1); printf("%d\n", ans.size()); //ans.size() << "\n"; sort(ans.begin(), ans.end()); for(int to : ans) printf("%d ", to); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 162 ms | 75440 KB | Output is correct |
2 | Correct | 185 ms | 74272 KB | Output is correct |
3 | Correct | 183 ms | 74256 KB | Output is correct |
4 | Correct | 247 ms | 78192 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 8 ms | 12244 KB | Output is correct |
2 | Correct | 8 ms | 12328 KB | Output is correct |
3 | Correct | 459 ms | 36004 KB | Output is correct |
4 | Correct | 411 ms | 39336 KB | Output is correct |
5 | Correct | 519 ms | 35292 KB | Output is correct |
6 | Correct | 545 ms | 38740 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 12116 KB | Output is correct |
2 | Correct | 8 ms | 12116 KB | Output is correct |
3 | Correct | 8 ms | 12136 KB | Output is correct |
4 | Correct | 7 ms | 12116 KB | Output is correct |
5 | Correct | 7 ms | 12212 KB | Output is correct |
6 | Correct | 7 ms | 12132 KB | Output is correct |
7 | Correct | 9 ms | 12188 KB | Output is correct |
8 | Correct | 9 ms | 12116 KB | Output is correct |
9 | Correct | 7 ms | 12116 KB | Output is correct |
10 | Correct | 9 ms | 12164 KB | Output is correct |
11 | Correct | 7 ms | 12244 KB | Output is correct |
12 | Correct | 7 ms | 12072 KB | Output is correct |
13 | Correct | 9 ms | 13012 KB | Output is correct |
14 | Correct | 7 ms | 12244 KB | Output is correct |
15 | Correct | 7 ms | 12116 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 450 ms | 36272 KB | Output is correct |
2 | Correct | 469 ms | 36200 KB | Output is correct |
3 | Correct | 479 ms | 37660 KB | Output is correct |
4 | Correct | 505 ms | 35204 KB | Output is correct |
5 | Execution timed out | 1065 ms | 32452 KB | Time limit exceeded |
6 | Halted | 0 ms | 0 KB | - |