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 <iostream>

using namespace std;

int t[500500];
int pref_min[500500];
int suf_max[500500];
bool chosen[500500];

int main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	int n, k;
	cin >> n >> k;
	pref_min[0] = 1000100000;
	for(int i = 1; i <= n; i++) {
		cin >> t[i];
		pref_min[i] = min(pref_min[i - 1], t[i]);
	}
	for(int i = n; i >= 1; i--) {
		suf_max[i] = max(suf_max[i + 1], t[i]);
	}
	if (k == 2) {
		for(int i = 1; i < n; i++) {
			if (pref_min[i] >= suf_max[i + 1]) {
				cout << "TAK\n" << i;
				return 0;
			}
		}
		cout << "NIE";
		return 0;
	} if (k == 3) {
		for(int i = 2; i <= n - 1; i++) {
			if (t[i] <= t[1]) {
				cout << "TAK\n" << i - 1 << " " << i;
				return 0;
			}
		}
		for(int i = n - 1; i >= 2; i--) {
			if (t[i] >= t[n]) {
				cout << "TAK\n" << i - 1 << " " << i;
				return 0;
			}
		}
		cout << "NIE";
		return 0;
	}
	bool is = false;
	if (t[1] >= t[2]) {
		chosen[1] = true;
		chosen[2] = true;
		chosen[3] = true;
		is = true;
	} else if (t[n - 1] >= t[n]) {
		chosen[n - 3] = true;
		chosen[n - 2] = true;
		chosen[n - 1] = true;
		is = true;
	} else {
		for(int i = 1; i < n; i++) {
			if (t[i] >= t[i + 1]) {
				chosen[i - 1] = true;
				chosen[i] = true;
				chosen[i + 1] = true;
				is = true;
				break;
			}
		}
	}
	if (is) {
		int to_chose = k - 4;
		for(int i = 1; i <= n - 1; i++) {
			if (!chosen[i] && to_chose) {
				chosen[i] = true;
				to_chose--;
			}
		}
		cout << "TAK\n";
		for(int i = 1; i <= n - 1; i++) {
			if (chosen[i]) {
				cout << i << " ";
			}
		}
	} else {
		cout << "NIE";
	}
}