# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
333175 | 2020-12-04T21:24:36 Z | ly20 | Mergers (JOI19_mergers) | C++17 | 362 ms | 63976 KB |
#include<bits/stdc++.h> using namespace std; const int MAXN = 500010; int n, k, qtt[MAXN], g[MAXN], in[MAXN]; int par[MAXN], depth[MAXN], need[MAXN]; set<int> s[MAXN]; set<int> :: iterator it; int marc[MAXN]; vector<int> graph[MAXN]; map<pair<int, int>, bool> specialEdge; void Special(int u, int v) { specialEdge[make_pair(u, v)] = true; specialEdge[make_pair(v, u)] = true; } void dfs(int v, int p) { for(int i = 0; i < (int) graph[v].size(); i++) { int u = graph[v][i]; if(u != p) dfs(u, v); } } int find(int v) { return (v == par[v]) ? v : par[v] = find(par[v]); } void join(int a, int b) { a = find(a), b = find(b); if(a == b) return; if(depth[a] > depth[b]) swap(a, b); par[a] = b; need[b] += need[a]; for(it = s[a].begin(); it != s[a].end(); it++) if(s[b].find(*it) != s[b].end()) need[b] -= qtt[*it]; else s[b].insert(*it); if(depth[a] == depth[b]) depth[b]++; } int main () { scanf("%d %d", &n, &k); for(int i = 0, u, v; i < n - 1; i++) { scanf("%d %d", &u, &v); graph[u].push_back(v); graph[v].push_back(u); in[u]++, in[v]++; } stack <int, vector <int> > q; for(int i = 1; i <= n; i++) { scanf("%d", &g[i]); qtt[g[i]]++; //in[1][i] = in[0][i]; if(in[i] == 1) q.push(i); } for(int i = 1; i <= n; i++) { par[i] = i; need[i] = qtt[g[i]] - 1; s[i].insert(g[i]); } while(!q.empty()) { int v = q.top(); q.pop(); marc[v] = 1; for(int i = 0; i < (int) graph[v].size(); i++) { int u = graph[v][i]; if(marc[u] == 1) continue; in[u]--; if(need[find(v)] == 0) Special(u, v); join(v, u); if(in[u] <= 1) q.push(u); } } for(int i = 1; i <= n; i++) { if(in[i] == 1) q.push(i); in[i] = graph[i].size(); } int ans = 0; while(!q.empty()) { int v = q.top(); q.pop(); for(int i = 0; i < (int) graph[v].size(); i++) { int u = graph[v][i]; in[u]--; if(specialEdge[make_pair(u, v)]){ ans++; in[u] = 0; continue; } if(in[u] == 1) in[u] = 0, q.push(u); } } printf("%d\n", (ans + 1) >> 1); } /* 5 4 1 2 2 3 3 4 3 5 1 2 1 3 4 */
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 29 ms | 35564 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 29 ms | 35564 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 29 ms | 35564 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 219 ms | 59120 KB | Output is correct |
2 | Incorrect | 362 ms | 63976 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 29 ms | 35564 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |