# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
955612 | 2024-03-31T06:28:01 Z | Neco_arc | Power Plant (JOI20_power) | C++17 | 1 ms | 5112 KB |
#include <bits/stdc++.h> #define ll long long #define ull unsigned long long #define all(x) x.begin(), x.end() #define Neco "Power Plant" #define resp(x) sort(all(x)), x.resize(unique(all(x)) - x.begin()) #define getbit(x,i) ((x >> i)&1) #define _left id * 2, l, mid #define _right id * 2 + 1, mid + 1, r #define cntbit(x) __builtin_popcountll(x) #define fi(i, a, b) for(int i = a; i <= b; i++) #define fid(i, a, b) for(int i = a; i >= b; i--) #define maxn (int) 2e5 + 7 using namespace std; const ll mod = 1e9 + 7; //972663749 const ll base = 911382323; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll GetRandom(ll l, ll r) { return uniform_int_distribution<ll> (l, r)(rng); } int n, res; int dp[maxn], cl[maxn]; vector<int> edges[maxn]; void dfs(int u, int par) { vector<int> P; for(int v : edges[u]) if(v != par) { dfs(v, u); P.push_back(dp[v]); } sort(all(P), greater<int>()); if(P.size() >= 1) { res = max(res, P[0] + cl[u]); int sum = 0; fi(i, 0, P.size() - 1) { sum += P[i]; if(i > 1) res = max(res, sum); } dp[u] = sum; } if(cl[u]) dp[u] = max(dp[u] - 1, 1); } void solve() { cin >> n; fi(i, 1, n - 1) { int x, y; cin >> x >> y; edges[x].push_back(y), edges[y].push_back(x); } fi(i, 1, n) { char x; cin >> x; cl[i] = x - '0'; } dfs(1, 0); cout << res; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); if(fopen(Neco".inp", "r")) { freopen(Neco".inp", "r", stdin); freopen(Neco".out", "w", stdout); } int nTest = 1; // cin >> nTest; while(nTest--) { solve(); } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 5112 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 5112 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 5112 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |