# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
525137 | perchuts | Poklon (COCI17_poklon7) | C++17 | 224 ms | 48188 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define maxn (int)(1e5+51)
#define all(x) x.begin(), x.end()
#define sz(x) (int) x.size()
#define endl '\n'
#define ll long long
#define pb push_back
#define ull unsigned long long
#define ii pair<int,int>
#define iii tuple<int,int,int>
#define inf 2000000001
#define mod 1000000007 //998244353
#define _ ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
using namespace std;
template<typename X, typename Y> bool ckmin(X& x, const Y& y) { return (y < x) ? (x=y,1):0; }
template<typename X, typename Y> bool ckmax(X& x, const Y& y) { return (x < y) ? (x=y,1):0; }
struct node{
pair<ll,ll> l,r;
}nd;
vector<node>g;
pair<ll,ll> dfs(int x){
if(g[x].l.first>0)g[x].l = dfs(g[x].l.first);
else g[x].l.first*=-1LL;
if(g[x].r.first>0)g[x].r = dfs(g[x].r.first);
else g[x].r.first*=-1LL;
if(g[x].l.first<g[x].r.first)swap(g[x].l,g[x].r);
ll msb = 0,tmp = g[x].r.first;
if(tmp)while(tmp<g[x].l.first)tmp<<=1LL,msb++;
else return {g[x].l.first,g[x].l.second+1LL};
if(g[x].r.second-g[x].l.second>=msb)return {g[x].r.first,g[x].r.second+1LL};
else return {g[x].l.first,g[x].l.second+1LL};
}
int main(){_
int n;cin>>n;
g.resize(n+1);
for(int i=1;i<=n;i++){
ll l,r;cin>>g[i].l.first>>g[i].r.first;
}
auto [ans,zero] = dfs(1);
vector<int>resp;
while(ans){
resp.pb(ans&1LL);
ans>>=1LL;
}
reverse(all(resp));
for(auto x:resp)cout<<x;
for(int i=0;i<zero;i++)cout<<'0';
cout<<endl;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |