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
#include <stdio.h>
#include <set>

int t[1000000];
int minLeft[1000000];
int maxRight[1000000];

int findDrop(int n){
	for(int i = 1; i < n; ++i){
		if (t[i - 1] >= t[i]){
			return i;
		}
	}
	return -1;
}

int max(int a, int b){
	return a > b ? a: b;
}

int min(int a, int b){
	return a < b ? a: b;
}

void calcMinMax(int n){
	minLeft[0] = t[0];
	maxRight[n - 1] = t[n - 1];

	for(int i = 1; i < n; ++i){
		minLeft[i] = min(minLeft[i - 1], t[i]);
		maxRight[n - i - 1] = max(maxRight[n - i], t[n - i - 1]);
	}

//	for(int i = 0; i < n; ++i){
//		printf("%d ", minLeft[i]);
//	}
//	printf("\n");
//	for(int i = 0; i < n; ++i){
//		printf("%d ", maxRight[i]);
//	}
//	printf("\n");
}

int calcMin(int b, int e){
	int minVal = t[b];
	for(int i = b; i < e; ++i){
		minVal = min(t[i], minVal);
	}
	return minVal;
}

int calcMax(int b, int e){
	int maxVal = t[b];
	for(int i = b; i < e; ++i){
		maxVal = max(t[i], maxVal);
	}
	return maxVal;
}

//int weryfikacja(std::set<int> sp){
//	int lastIdx = 0;
//	int lastVal = 0;
//	for(auto it = sp.begin(); it != sp.end(); it++){
//		int nextVal = calcMin(lastIdx, *it);
//		int nextMaxVal = calcMax(lastIdx, *it);
//		if (nextMaxVal <= lastVal)
//			return 1;
//		lastIdx = *it;
//		lastVal = nextVal;
//	}
//	return 0;
//}


int main(){
	int k,n;
	scanf("%d %d", &n, &k);
	for(int i = 0; i < n; ++i){
		scanf("%d", &t[i]);
	}
	if (k >= 4){
		int dropIdx = findDrop(n);
		if (dropIdx == -1){
			printf("NIE\n");
		} else {
			std::set<int> ends;

			if (dropIdx - 1 >= 1) ends.insert(dropIdx - 1);//musimy przyciac poprzedni jesli szukany wyraz nie jest pierwszy
			ends.insert(dropIdx);
			ends.insert(dropIdx + 1);
			int anotherEnds = 1;
			ends.erase(n);//gdyby to byl ostatni
			while((int)ends.size() < (k - 1) && (anotherEnds < n)){//ostatni jest pomijany
				ends.insert(anotherEnds);
				++anotherEnds;
			}
			if ((int)ends.size() != k - 1){
				printf("NIE\n");
			} else {
				printf("TAK\n");
				for(auto it = ends.begin(); it != ends.end(); it++){
					printf("%d ", *it);
				}
				printf("\n");
			}
//			ends.insert(n);
//			if (!weryfikacja(ends)) throw "ZLE PRZEDZIALY";
		}
	} else if (k == 2){
		calcMinMax(n);
		for(int i = 0; i < n - 1; ++i){
			if (minLeft[i] >= maxRight[i + 1]){
				printf("TAK\n%d\n", i + 1);
//				std::set<int> ends;
//				ends.insert(i + 1);
//				ends.insert(n);
//				if (!weryfikacja(ends)) throw "ZLE PRZEDZIALY";
				return 0;
			}
		}
		printf("NIE\n");

	} else if (k == 3){
		calcMinMax(n);
		for(int i = 1; i < n - 1; ++i){
			if (minLeft[i - 1] >= t[i] || t[i] >= maxRight[i + 1]){
				printf("TAK\n%d %d\n", i, i + 1);

//				std::set<int> ends;
//				ends.insert(i);
//				ends.insert(i + 1);
//				ends.insert(n);
//				if (!weryfikacja(ends)) throw "ZLE PRZEDZIALY";

				return 0;
			}
		}
		printf("NIE\n");
	}
	return 0;
}