Submission #763607

#TimeUsernameProblemLanguageResultExecution timeMemory
763607MISM06Mergers (JOI19_mergers)C++14
10 / 100
173 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], cnt, b[N], root; 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]; b[v] |= b[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)) { if(b[v] == 0) { b[v] = 1; ++cnt; } } } 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); int ans = (cnt + 1) / 2; cout << ans << '\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...