답안 #593770

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
593770 2022-07-11T15:05:06 Z CSQ31 순열 (APIO22_perm) C++17
0 / 100
1 ms 212 KB
#include "perm.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define fi first
#define se second
#define sz(a) (int)(a.size())
#define all(a) a.begin(),a.end()
#define lb lower_bound
#define ub upper_bound
#define owo ios_base::sync_with_stdio(0);cin.tie(0);
#define INF (int)(1e9+1)
#define debug(...) fprintf(stderr, __VA_ARGS__),fflush(stderr)
#define time__(d) for(long blockTime = 0; (blockTime == 0 ? (blockTime=clock()) != 0 : false);\
debug("%s time : %.4fs\n", d, (double)(clock() - blockTime) / CLOCKS_PER_SEC))
typedef long long int ll;
typedef long double ld;
typedef pair<ll,ll> PII;
typedef pair<int,int> pii;
typedef vector<vector<int>> vii;
typedef vector<vector<ll>> VII;
ll gcd(ll a,ll b){if(!b)return a;else return gcd(b,a%b);}
vector<int> construct_permutation(ll k)
{
	vector<int>v;
	while(k){
		v.pb(k%4);
		k/=4;
	}
	reverse(all(v));
	deque<int>ans;
	//4x//[N] n+1 n+2 
	//4x+1//n+3 [N] n+1 n+2
	//4x+2//n+2 [N] n+1 n+3
	//[N] n+1 n+2 1.5
	//for(int x:v)cout<<x<<" ";
	//cout<<'\n';
	if(v[0] == 2)ans.pb(0);
	if(v[0] == 3){
		ans.pb(1);
		ans.pb(0);
	}
	for(int i=1;i<sz(v);i++){
		if(!v[i]){
			ans.pb(sz(ans));
			ans.pb(sz(ans));	
		}
		else if(v[i] == 1){
			ans.pb(sz(ans));
			ans.pb(sz(ans));
			ans.push_front(sz(ans));	
		}else if(v[i] ==2){
			ans.pb(sz(ans));
			ans.push_front(sz(ans));
			ans.pb(sz(ans));	
		}else{
			bool ok = 0;
			for(int x:ans){
				if(x==0)ok = 1;
				if(x==1)ok = 0;
			}
			if(ok){
				ans.pb(sz(ans));
				ans.pb(sz(ans));
				for(int &x:ans)if(x>1)x++;
				ans.pb(2);
			}else{
				ans.pb(sz(ans));
				ans.pb(-1);
				ans.pb(sz(ans)-1);
				ans.pb(-2);
				for(int &x:ans)x+=2;
				
			}
		}
	}
	vector<int>res;
	for(int x:ans)res.pb(x);
	//for(int x:ans)cout<<x<<" ";
	//cout<<'\n';
	return res;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Incorrect 1 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Incorrect 1 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -