# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
423293 | DanerZein | Power Plant (JOI20_power) | C++14 | 1580 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
vector<vi> G;
string x;
set<int> br;
bool dfs(int u,int p,int b){
for(auto &v:G[u]){
if(v==b) return 1;
if(v!=p){
if(dfs(v,u,b)){
if(x[v]=='1') br.insert(v);
return 1;
}
}
}
return 0;
}
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;
int rp=-1;
for(int i=0;i<(1<<n);i++){
//cout<<i<<endl;
vector<int> po;
int c=0;
for(int j=0;j<n;j++){
if(i&(1<<j) && x[j]=='1'){
c++;
po.push_back(j);
}
}
br.clear();
for(int j=0;j<po.size();j++){
for(int k=j+1;k<po.size();k++){
dfs(po[j],-1,po[k]);
}
}
for(int j=0;j<po.size();j++){
if(br.find(po[j])!=br.end()) c--;
}
rp=max(rp,c-(int)br.size());
}
cout<<rp<<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... |