Submission #258484

# Submission time Handle Problem Language Result Execution time Memory
258484 2020-08-06T04:25:21 Z 임성재(#5051) Swap (BOI16_swap) C++17
0 / 100
1 ms 384 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[100010];
bool chk[100010];
int ans[100010];

int main() {
	fast;

	cin >> n;

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

	for(int i=1; i<=n; i++) {
		vector<int> v;
		int x = n+1;
		for(int j=i; j; j >>= 1) {
			if(!chk[a[j]]) x = min(x, a[j]);
			if(j * 2 <= n && !chk[a[j * 2]]) x = min(x, a[j*2]);
		}

		if(i * 2 + 1 <= n) x = min(x, a[i*2+1]);

		chk[x] = true;
		cout << x << " ";
	}
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -