# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
423356 | DanerZein | Power Plant (JOI20_power) | C++14 | 299 ms | 28768 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
const int MAX_N=2e5+10;
vector<vi> G;
string x;
int dp[MAX_N],pa[MAX_N];
int ans=0;
int dfs(int u,int p){
int ma=0;
int s=0;
bool hj=0;
for(auto &v:G[u]){
if(v!=p){
hj=1;
int aux=dfs(v,u);
ma=max(ma,aux);
s+=aux;
}
}
int mi=0;
if(x[u]=='1'){
ma++; s--;
mi=1;
}
ans=max(ans,ma);
return dp[u]=max(s,mi);
}
int main(){
int n;
cin>>n;
G.resize(n+1);
for(int i=0;i<n-1;i++){
int a,b; cin>>a>>b;
a--; b--;
G[a].push_back(b);
G[b].push_back(a);
}
cin>>x;
cout<<max(ans,dfs(0,-1))<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |