제출 #766022

#제출 시각아이디문제언어결과실행 시간메모리
766022MISM06Mergers (JOI19_mergers)C++14
48 / 100
140 ms262144 KiB
//0 1 1 0 1 //0 1 0 0 1 //1 0 0 1 1 //0 1 1 0 1 #include <bits/stdc++.h> #pragma GCC optimize("Ofast,unroll-loops") #pragma GCC target("avx2") using namespace std; #define F first #define S second #define pb push_back #define sze size() #define all(x) x.begin() , x.end() #define wall__ cout << "--------------------------------------\n"; #define kids int mid = (tl + tr) >> 1, cl = v << 1, cr = v << 1 | 1 #define file_io freopen("input.cpp", "r", stdin); freopen("output.cpp", "w", stdout); typedef long long ll; typedef long double dl; typedef pair < int , int > pii; typedef pair < int , ll > pil; typedef pair < ll , int > pli; typedef pair < ll , ll > pll; typedef pair < int , pii > piii; typedef pair < ll, pll > plll; const ll N = 1e5 + 10; const ll mod = 1e9 + 7; const ll inf = 2e16; const ll INF = 1e9 + 10; const ll lg = 32; int n, k, a[N], timer, c[N], sub[N], ans, b[N], root, cnt[N]; vector < int > g[N]; vector < int > mark[N]; void dfs (int v, int p) { sub[v] = 1; mark[v][a[v]] = 1; for (auto u : g[v]) { if (u == p) continue; dfs(u, v); sub[v] += sub[u]; cnt[v] += cnt[u]; for (int i = 1; i <= k; i++) mark[v][i] |= mark[u][i]; } ll x = 0; for (int y = 1; y <= k; y++) { if (mark[v][y]) x += c[y]; } if ((x == sub[v] && v != root)) { b[v] = 1; ++cnt[v]; } } void dfs1(int v, int p) { if (b[v] == 1) { if (cnt[v] == 1 || cnt[v] == cnt[root]) ++ans; } for (auto u : g[v]) { if (u == p) continue; dfs1(u, v); } } void solve () { cin >> n >> k; for (int i = 1; i < n; i++) { int v, u; cin >> v >> u; g[v].pb(u); g[u].pb(v); } for (int i = 1; i <= n; i++) { mark[i].resize(k + 1, 0); } for (int i = 1; i <= n; i++) { cin >> a[i]; ++c[a[i]]; } root = 1; for (int i = 2; i <= n; i++) { if (g[i].sze > g[root].sze) root = i; } dfs(root, 0); dfs1(root, 0); cout << (ans + 1) / 2 << '\n'; } int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int t = 1; // cin >> t; while (t--) {solve();} return 0; } /* */ //shrek will AC this;
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...