# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
856108 | vjudge1 | Turnir (COCI17_turnir) | C++17 | 3071 ms | 65536 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>
using namespace std;
#define sp << " " <<
#define int long long
#define vi vector<int>
#define pb push_back
#define F(xxx,yyy) for (int xxx=1;xxx<=yyy;xxx++)
#define pii pair<int,int>
#define all(x) x.begin()+1,x.end()
const int N = 4e5+1;
void solve() {
int n;
cin >> n;
int N = n;
n = pow(2,n);
vi a(n+1);
F(i,n) cin >> a[i];
map<int,int> mp,mp2;
F(i,n) mp[a[i]]++;
vi bg(n+1);
vector<pii> ps(n+1);
F(i,n) ps[i] = {a[i],i};
sort(ps.begin()+1,ps.end());
F(i,n) mp2[ps[i].first]++,bg[ps[i].second] = i-mp2[ps[i].first]+mp[ps[i].first];
vi ans(n+1);
F(i,n) {
for (int j=0;j<n;j++) {
if (bg[i] >= (1<<j)-1) ans[i] = N-j;
}
}
F(i,n) cout << ans[i] << " ";
cout << endl;
}
signed main() {
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int t = 1;
//cin >> t;
while (t --> 0) solve();
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |