# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
525137 | perchuts | Poklon (COCI17_poklon7) | C++17 | 224 ms | 48188 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |