# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
872199 | SalihSahin | Svjetlo (COCI20_svjetlo) | C++14 | 152 ms | 52952 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define pb push_back
#define mp make_pair
#define int long long
using namespace std;
const int N = 5e5 + 5;
const int mod = 1e9+7;
const int inf = 1e18 + 10;
const int L = 20 * 20 * 20;
vector<int> in(N), adj[N];
vector<int> arr;
void dfs(int node, int par){
arr.pb(node);
for(auto itr: adj[node]){
if(itr != par){
dfs(itr, node);
}
}
}
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int n;
cin>>n;
string s;
cin>>s;
for(int i = 0; i < n-1; i++){
int a, b;
cin>>a>>b;
in[a]++;
in[b]++;
adj[a].pb(b);
adj[b].pb(a);
}
int uc = 0;
for(int i = 1; i <= n; i++){
if(in[i] == 1){
uc = i;
break;
}
}
dfs(uc, uc);
int first = n, last = 0;
vector<int> tree(n);
int ans = 0;
for(int i = 0; i < n; i++){
tree[i] = s[arr[i] - 1] - '0';
if(tree[i] == 0){
first = min(first, i);
last = max(last, i);
}
}
vector<int> nt;
for(int i = first; i <= last; i++){
nt.pb(tree[i]);
}
for(int i = 0; i < nt.size(); i++){
if(!nt[i]){
ans++;
continue;
}
if(i == nt.size()-1) break;
if(nt[i] == 1 && nt[i+1] == 1){
ans += 4;
i++;
}
else if(nt[i] == 1 && nt[i+1] == 0){
nt[i+1] = 1;
ans += 3;
}
}
cout<<ans<<endl;
return 0;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |