# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
660691 | BidoTeima | Poklon (COCI17_poklon7) | C++17 | 1045 ms | 262144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
ID: BidoTeima
LANG: C++11
TASK:
*/
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
void moo(string filename);
void ACPLS(string str = "")
{
if(str=="NOF")return;
if(str.size())
moo(str);
else{
#ifndef ONLINE_JUDGE
freopen("output.txt", "w", stdout);
freopen("input.txt", "r", stdin);
#endif
}
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
}
void moo(string fileName){
freopen((fileName+".in").c_str(),"r",stdin);
freopen((fileName+".out").c_str(),"w",stdout);
}
#define tc \
int tttttt/*,subtask*/; \
cin >> tttttt/* >> subtask*/; \
while (tttttt--)/*end
*/
pair<string,string>adjW[(int)1e6+5];
pair<int,int>adj[(int)1e6+5];
string sum[(int)1e6+5];
string binary(int x){
string ret;
if(x<0)x=-x;
if(!x)return "0";
while(x){
ret.push_back('0'+(x%2));
x/=2;
}
reverse(ret.begin(),ret.end());
return ret;
}
bool cmp(string&a,string&b){
if(a.size()>b.size())return 1;
if(b.size()>a.size())return 0;
for(int i = 0; i < (int)a.size(); i++){
if(a[i]=='1'&&b[i]=='0')return 1;
if(a[i]=='0'&&b[i]=='1')return 0;
}
return 1;
}
string dfs(ll node){
string x = \
adj[node].first<=0?
adjW[node].first:
dfs(adj[node].first);
string y = \
adj[node].second<=0?
adjW[node].second:
dfs(adj[node].second);
if(cmp(x,y)){
x.push_back('0');
return x;
}
y.push_back('0');
return y;
}
int main()
{
//ACPLS();
int n;
cin>>n;
for(int i = 1; i <= n; i++){
ll u,v;
cin>>u>>v;
adj[i].first=(u);
adj[i].second=(v);
if(u<=0)adjW[i].first=binary(u);
if(v<=0)adjW[i].second=binary(v);
}
cout<<dfs(1);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |