# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
856077 | vjudge1 | Turnir (COCI17_turnir) | C++17 | 1680 ms | 65536 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#ifndef Local
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#endif
#include <bits/stdc++.h>
#define int long long
#define pb push_back
#define lim 1000001
using namespace std;
const int mod=1000000007ll;
map<int,int>a;
map<int,int>ans;
void solve(){
int n;
cin>>n;
int N=1<<n;
int aa[N];
for(int i=0;i<N;i++){
cin>>aa[i];
a[aa[i]]++;
}
int cur=0;
for(auto [f,s]:a){
cur+=s;
ans[f]=__lg(cur);
}
for(int i=0;i<N;i++){
cout<<n-ans[aa[i]]<<" ";
}
}
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);cout.tie(NULL);
#ifdef Local
freopen("in.txt","r",stdin);
freopen("out.txt","w",stdout);
#endif
int t=1;
//cin>>t;
while (t--)
{
solve();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |