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
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#define _CRT_SECURE_NO_WARNINGS

#include <cstdio>
#include <stdio.h>
#include <iostream>
#include <string.h>
#include <math.h>
#include <algorithm>
#include <vector>

typedef long long lLong;
typedef unsigned long uLong;
typedef unsigned long long ulLong;
typedef unsigned int uInt;
typedef unsigned char Byte;

using namespace std;

#define FOR(x, b, e) for(int x=b; x<=(e); ++x)
#define ALL(i) (i).begin(), (i).end()
#define CONTAINS(i,v) (find(ALL(i),v)!=(i).end())
typedef vector<bool> bit_vector;
typedef vector<int> int_vector;
typedef vector<uInt> VI;
typedef vector<ulLong> VLL;

#define MAX_T 300000

class PrzypadekTestowy
{
private:
	lLong _maxWyk;
	FILE *_input;
	int _skarbonka[MAX_T];
	inline void Reset()
	{
		memset(_skarbonka, 0, sizeof(_skarbonka));
		_maxWyk = 0;
	}

	inline void WczytajInt(int *value)
	{
		fscanf(_input, "%d\n", value);
	}
public:
	PrzypadekTestowy() :_input(stdin)
	{
	}
	PrzypadekTestowy(FILE *input)
	{
		_input = input;
	}

	inline bool CzyStabilna(VI& v)
	{
		int ile = 0;
		for (auto it = v.begin(); it != v.end() - 1; ++it)
		{
			for (auto itNext = it + 1; itNext != v.end(); ++itNext)
			{
				if (*it > *itNext) ile++;
				else ile--;
			}
		}
		return ile == 0;
	}

	//void PermutacjaWzorcowa(int n)
	//{
	//	VI v;
	//	v.resize(n);
	//	int cyfra = 1;
	//	int j = 0;
	//	for (int i = 0; i <n; i++)
	//	{
	//		v[i]= cyfra++;
	//		v[n - (1+j++)] = cyfra++;
	//		v[n - (1+j++)] = cyfra++;
	//		if (j >= i) break;
	//	}
	//	if (CzyStabilna(v))
	//	{
	//		for (int i = 0; i < n; i++)
	//		{
	//			printf("%d ", v[i]);
	//		}
	//		printf("\n");
	//	}
	//}

	inline void Permutacje(int n, ulLong k)
	{
		VI v;
		v.reserve(n);
		for (int i = 0; i < n; i++)
		{
			v.push_back(i + 1);
		}
		ulLong ileStabilnych = 0;
		if ((n - 2) % 4 == 0 || (n - 3) % 4 == 0)
		{
			printf("NIE\n");
			return;
		}
		do {
			if (CzyStabilna(v))
			{
				ileStabilnych++;
				if (ileStabilnych == k) break;
			}
		} while (next_permutation(v.begin(), v.end()));

		if (ileStabilnych == k)
		{
			printf("TAK\n");
			for (int i = 0; i < n; i++)
			{
				if (i > 0) printf(" ");
				printf("%d", v[i]);
			}
			printf("\n");
		}
		else
		{
			printf("NIE\n");
		}
		//printf("Liczba stabilnych=%d\n", ileStabilnych);
	}

	inline void Wykonaj()
	{
		Reset();
		WczytajPrzypadekTestowy();		
	}

	inline void WczytajPrzypadekTestowy()
	{
		int n;
		ulLong k;
		fscanf(_input, "%d %llu\n", &n,&k);
		Permutacje(n,k);
	}
};


int main(int argc, char **argv)
{
	FILE *in = stdin;
	if (argc>1)
	{
		in = fopen(argv[1], "rt");
		if (NULL == in)
		{
			in = stdin;
		}
	}

	//PermutacjaWzorcowa(12);
	//Permutacje(17);
	//return 0;

	PrzypadekTestowy *p = new PrzypadekTestowy(in);
	p->Wykonaj();
	fclose(in);
	delete(p);
	return 0;
}