1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include<bits/stdc++.h>

using namespace std;

long long ilewyp=0;
vector<int> ciag;
int n;long long k;
int used[250009];
long long iii;

void dfs(int ak){
	if(ilewyp==k)return;
	if(ak==n){
		int inw=0;
		for(int i=0;i<ciag.size();++i)
		for(int j=i+1;j<ciag.size();++j)if(ciag[i]>ciag[j])++inw;else --inw;
		if(inw != 0)return;
		if(ilewyp==k-1){
				printf("TAK\n");
			for(int i=0;i<ciag.size();++i)printf("%d ", ciag[i]);
		}
		++ilewyp;

		return;
	}
	for(int i=1;i<=n;++i){
		if(used[i]==0){
			used[i]=1;
			ciag.push_back(i);
			dfs(ak+1);
			ciag.pop_back();
			used[i]=0;
		}
	}
	return;
}

int main(){
    scanf("%d%lld", &n, &k);
    for(int i=1;i<n;++i){
		iii+=i;
    }
    if(iii%2==1){
    	printf("NIE\n");
		return 0;
    }
    iii/=2;
    dfs(0);
	if(ilewyp!=k)printf("NIE\n");


	return 0;
}