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
#include <bits/stdc++.h>
using namespace std;
const int N = 500001;
int n, k, t[N];
int mn[N], mx[N];

bool cond(int i) {
  if (k == 2) {
    return i + 1 < n && mn[i] >= mx[i + 1];
  }
  if (k == 3) {
    return (i + 1 < n && t[i] >= mx[i + 1]) ||
      (i > 0 && mn[i - 1] >= t[i]);
  }
  return i + 1 < n && t[i] >= t[i + 1];
}

void res(int i) {
  cout << "TAK" << endl;

  if (k == 2) {
    cout << i + 1;
  } else if (k == 3) {
    cout << i << " " << i + 1;
  } else {
    k--;
    for (int j = 0; j < i - 1 && k > 3; j++) {
      cout << j + 1 << " ";
      k--;
    }
    if (i > 0) {
      cout << i << " ";
      k--;
    }
    cout << i + 1 << " " << i + 2 << " ";
    k -= 2;
    for (int j = i + 2; k > 0; j++) {
      cout << j + 1 << " ";
      k--;
    }
  }
  cout << endl;
}

int main()
{
  ios_base::sync_with_stdio(0);

  cin >> n >> k;

  for (int i = 0; i < n; i++) {
    cin >> t[i];
    if (i == 0) {
      mn[i] = t[i];
    } else {
      mn[i] = min(mn[i - 1], t[i]);
    }
  }

  mx[n - 1] = t[n - 1];
  for (int i = n - 2; i >= 0; i--) {
    mx[i] = max(mx[i + 1], t[i]);
  }

  for (int i = 0; i < n; i++) {
    if (cond(i)) {
      res(i);
      return 0;
    }
  }

  cout << "NIE" << endl;

  return 0;
}