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
#include<bits/stdc++.h>
using namespace std;

int n, k, naj, idxNaj;

int minimum = 1e9;
vector<int>v;
vector<int>maks;

void wyznacz_maks(){
	maks[n] = v[n];
	for(int i = n - 1; i > 0; i--)
		maks[i] = max(v[i], maks[i + 1]);
}

int main(){
	ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);

	cin >> n >> k;
	v.resize(n + 1);
	maks.resize(n + 1);

	for(int i = 1; i <= n; i++){
		cin >> v[i];

		if(v[i] >= naj){
			naj = v[i];
			idxNaj = i;
		}
	}

	//jesli idx jest na końcu - nie da sie
	if(idxNaj == n){
		cout << "NIE\n";
		return 0;
	}

	k--;
	//jeli k == 1
	if(k == 1){
		wyznacz_maks();
		for(int i = 1; i < n; i++){
			minimum = min(minimum, v[i]);
			if(minimum >= maks[i + 1]){
				cout << "TAK\n" << i << '\n';
				return 0;
			}
		}

		cout << "NIE\n";
		return 0;
	}

	cout << "TAK\n";
	//jesli idx jest na poczatku
	if(idxNaj == 1){
		cout << "1 ";
		for(int i = 2; i <= k; i++)
			cout << i << ' ';
		cout << '\n';
		return 0;
	}

	//jeli k == 2
	if(k == 2){
		cout << idxNaj - 1 << ' ' << idxNaj << '\n';
		return 0;
	}

	//normalnie
	int i = 1;
	int ilePut = 0;
	k -= 3;

	for(; i <= (idxNaj - 2, k); i++){
		cout << i << ' ';
		ilePut++;
	}

	cout << idxNaj - 1 << ' ' << idxNaj << ' ' << idxNaj + 1 << ' ';

	i += 2;
	for(; ilePut <= k; ilePut++)
		cout << i++ << ' ';

	cout << '\n';
}