Cod sursa(job #2635093)

Utilizator alex.prohnitchiAlex Prohnitchi alex.prohnitchi Data 13 iulie 2020 12:04:48
Problema Generare de permutari Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.84 kb
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>

typedef long long ll;

const ll mod=1e9+7;

const int dx[] = {0, 1, 0, -1};
const int dy[] = {1, 0, -1, 0};

#define all(x) x.begin(),x.end()
#define allr(x) x.rbegin(),x.rend()
#define rc(x)  return cout<<x<<"\n",0
#define sz(s)  (int) s.size()
#define pb push_back
#define mp make_pair
#define fr first
#define sc second

using namespace std;

ifstream f("permutari.in");
ofstream g("permutari.out");

ll t,n,a[10],v[10];

void scr() {
	for (int i=1; i<=n; i++) {
		g << v[i] << " ";
	}
	g << '\n';
}

void perm(int b) {
	for (int i=1; i<=n; i++) {
		 if (a[i]==0) {
		 	v[b]=i;
		 	a[i]=1;
		 	if (b==n) {
		 		scr();
			 }
			perm(b+1);
			a[i]=0;
		 }
	}
}

int main() {
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	f >> n;
	perm(1);
	
}