# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
249053 | Vladikus004 | Poklon (COCI17_poklon7) | C++17 | 702 ms | 170744 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 inf 2e9
#define all(v) v.begin(), v.end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair <int, int> pii;
const int N = 1000000 + 3;
int n;
int k0[N], k01, k02;
bool is_p[N];
string s[N], s1, s2;
vector <pii> q;
string to_str(int x){
string s;
while (x){
s += (x % 2) + '0';
x /= 2;
}
reverse(all(s));
return s;
}
bool bigger(string &s, int sk0, string &t, int tk0){
if (s.size() + sk0 > t.size() + tk0) return true;
if (t.size() + tk0 > s.size() + sk0) return false;
for (int i = 0; i < max(t.size(), s.size()); i++){
if (i < t.size() && i < s.size()){
if (s[i] > t[i]) return true;
if (s[i] < t[i]) return false;
}else{
if (i < s.size()){
if (s[i] == '1') return true;
}else{
if (t[i] == '1') return false;
}
}
}
return false;
}
void dfs(int x){
if (q[x].first > 0){
dfs(q[x].first - 1);
}
if (q[x].second > 0){
dfs(q[x].second - 1);
}
if (q[x].first > 0) {
s1 = s[q[x].first - 1];
k01 = k0[q[x].first - 1];
}else {
s1 = to_str(-q[x].first);
k01 = 0;
}
if (q[x].second > 0) {
s2 = s[q[x].second - 1];
k02 = k0[q[x].second - 1];
}else {
s2 = to_str(-q[x].second);
k02 = 0;
}
if (bigger(s1, k01, s2, k02)) {
s[x] = s1;
k0[x] = k01;
}else {
s[x] = s2;
k0[x] = k02;
}
k0[x]++;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
#ifdef LOCAL
freopen("input.txt", "r", stdin);
#endif // LOCAL
cin >> n;
q.resize(n);
for (int i = 0; i < n; i++){
cin >> q[i].first >> q[i].second;
if (q[i].first > 0){
is_p[q[i].first - 1] = true;
}
if (q[i].second > 0){
is_p[q[i].second - 1] = true;
}
}
int st = -1;
for (int i = 0; i < n; i++){
if (!is_p[i]){
st = i;
}
}
dfs(st);
cout << s[st];
for (int i = 0; i < k0[st]; i++) cout << 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |