답안 #258595

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
258595 2020-08-06T07:54:59 Z 임성재(#5051) Swap (BOI16_swap) C++17
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std;

#define fast ios::sync_with_stdio(false); cin.tie(NULL)
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define em emplace
#define all(v) (v).begin(), (v).end()
#define pre(a) cout<<fixed; cout.precision(a)
#define mp make_pair

typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
const int inf = 1e9;
const ll INF = 1e18;

int n;
int a[800010];
int ans[800010];

int f(int x) {
	if(a[x] < a[x*2] && a[x] < a[x*2+1]) return x;
	if(a[x*2] < a[x] && a[x*2] < a[x*2+1]) {
		swap(a[x], a[x*2]);

		int ret = f(x*2);

		swap(a[x], a[x*2]);

		return ret;
	}
	
	swap(a[x], a[x*2+1]);

	int p = inf, q = inf;
	
	//if(a[x*2] < a[x*2+1]) 
		p = min(p, f(x * 2));
	//else 
		q = min(q, f(x * 2 + 1));

	swap(a[x*2], a[x*2+1]);

	//if(a[x*2] < a[x*2+1]) 
		p = min(p, f(x * 2));
	//else 
		q = min(q, f(x * 2 + 1));

	swap(a[x*2], a[x*2+1]);
	
	swap(a[x], a[x*2+1]);
	
	return min(p, q);
}

void g(int x) {
	if(x > n) return;
	
	if(a[x*2] < a[x] && a[x*2] < a[x*2+1]) {
		swap(a[x], a[x*2]);
	}
	else if(a[x*2+1] < a[x] && a[x*2+1] < a[x*2]) {
		swap(a[x], a[x*2+1]);

		int p, q;
		
		int p = inf, q = inf;
		
		//if(a[x*2] < a[x*2+1]) 
			p = min(p, f(x * 2));
		//else 
			q = min(q, f(x * 2 + 1));

		swap(a[x*2], a[x*2+1]);

		//if(a[x*2] < a[x*2+1]) 
			p = min(p, f(x * 2));
		//else 
			q = min(q, f(x * 2 + 1));

		swap(a[x*2], a[x*2+1]);

		if(p < q) {
			if(a[x*2] > a[x*2+1]) swap(a[x*2], a[x*2+1]);
		}
		else {
			if(a[x*2] < a[x*2+1]) swap(a[x*2], a[x*2+1]);
		}
	}

	g(x*2);
	g(x*2+1);
}

int main() {
	fast;

	cin >> n;

	for(int i=1; i<=800000; i++) {
		a[i] = inf;
	}

	for(int i=1; i<=n; i++) {
		cin >> a[i];
	}

	g(1);

	for(int i=1; i<=n; i++) {
		cout << a[i] << " ";
	}
}

Compilation message

swap.cpp: In function 'void g(int)':
swap.cpp:70:7: error: redeclaration of 'int p'
   int p = inf, q = inf;
       ^
swap.cpp:68:7: note: 'int p' previously declared here
   int p, q;
       ^
swap.cpp:70:16: error: redeclaration of 'int q'
   int p = inf, q = inf;
                ^
swap.cpp:68:10: note: 'int q' previously declared here
   int p, q;
          ^