[C++] AtCoder Beginner Contest 188 C번 ABC Tournament
17 Jan 2021 | PSAtCoder Beginner Contest 188 B번 ABC Tournament
문제
https://atcoder.jp/contests/abc188/tasks/abc188_c
풀이
길이가 2^N인 수열 N이 있고 수열 N은 i번째 플레이어의 레이팅을 나타낸다고 했을 때
모든 플레이어가 토너먼트식으로 진행을 할 때 2등을 하는 플레이어는 누군지 선택하는 문제
토너먼트로 진행이 되므로 결승전은 수열 N을 반으로 나누어 만든 두 그룹 중, 앞 그룹 중 1등 vs 뒷 그룹 중 1등의 결승 대진이 확정된다.
결승전에서 진 플레이어가 2등이므로 해당 플레이어의 인덱스를 출력하면 정답
코드
#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll, ll, ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc188/tasks/abc188_c
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll n;
cin >> n;
vll a(pow(2,n));
for(int i = 0;i<pow(2,n);i++){
cin >> a[i];
}
ll max1 = 0, max2 = 0;
ll idx1 = 0, idx2 = 0;
for(int i = 0;i<a.size()/2;i++){
if(max1 < a[i]){
max1 = a[i];
idx1 = i+1;
}
}
for(int i = a.size()/2;i<a.size();i++){
if(max2 < a[i]){
max2 = a[i];
idx2 = i+1;
}
}
if(max1 > max2) cout << idx2;
else cout << idx1;
return 0;
}