Submission #983937

# Submission time Handle Problem Language Result Execution time Memory
983937 2024-05-16T08:17:13 Z vjudge1 Permutation (APIO22_perm) C++17
0 / 100
1000 ms 348 KB
#include <bits/stdc++.h>
#include "perm.h"

using namespace std;

const int N = 200;

int node = 0;
vector<int> g[N];
int a[N];

vector<int> b;
void dfs(int v) {
	b.push_back(a[v]);
	sort(g[v].begin(), g[v].end(), [](int x, int y) {
		return a[x] > a[y];
	});
	for (int to : g[v]) {
		dfs(to);
	}
}

vector<int> construct_permutation(long long k) {
	while (node) {
		g[node].clear();
		a[node] = 0;
		node--;
	}
	b.clear();
	if (k & 1) {
		while (true);
		return {};
	}
	int mx = 63 - __builtin_clzll(k);
	node = 1;
	while (node < mx) {
		g[node].push_back(node + 1);
		++node;
	}
	
	int val = 0;
	for (int i = 1; i <= mx; i++) {
		a[i] = val++;
		if (i < mx && (k >> i & 1)) {
			g[i].push_back(++node);
			a[node] = val++;
		}
	}
	dfs(1);
	// for (int c : b) 
	// 	cout << c << ' ';
	// cout << '\n';
	return b;
}	
# Verdict Execution time Memory Grader output
1 Execution timed out 1067 ms 348 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1067 ms 348 KB Time limit exceeded
2 Halted 0 ms 0 KB -