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

using namespace std;

int n, k;
int t[500007];
int prefMin[500007];
int suffMax[500007];

void printRes(int a, int b, int c) {
  a++;
  b++;
  c++;
  int toAdd = k - 4;

  for (int i = 1; i < n; i++) {
    if (toAdd > 0 && i != a && i != b && i != c) {
      toAdd--;
      cout << i << " ";
    } else if (i == a || i == b || i == c) {
      cout << i << " ";
    }
  }
  cout << "\n";
}


int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);

  cin >> n >> k;

  for (int i = 0; i < n; i++) {
    cin >> t[i];
  }

  prefMin[0] = t[0];
  for (int i = 1; i < n; i++) {
    prefMin[i] = min(t[i], prefMin[i - 1]);
  }

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

  if (k == 2) {
    for (int i = 0; i < n - 1; i++) {
      if (prefMin[i] >= suffMax[i + 1]) {
        cout << "TAK\n";
        cout << i + 1 << "\n";
        return 0;
      }
    }
    cout << "NIE\n";
    return 0;
  }

  if (k == 3) {
    //sciankowy, uzupelnia braki k == 4, zalatwia swoja robote przy sciankach tez w sumie
    if (t[0] >= t[1]) {
      cout << "TAK\n";
      cout << "1 2\n";
      return 0;
    }
    if (t[n - 2] >= t[n - 1]) {
      cout << "TAK\n";
      cout << (n - 3) + 1 << " " << (n - 2) + 1 << "\n";
      return 0;
    }

    for (int i = 1; i < n - 1; i++) {
      if (t[i] >= suffMax[i + 1] || prefMin[i - 1] >= t[i]) {
        cout << "TAK\n";
        cout << (i - 1) + 1 << " " << (i) + 1 << "\n";
        return 0;
      }
    }
    cout << "NIE\n";
    return 0;
  }

  if (k >= 4) { //">=>=>=>=>=>=>=>=>=>=>=>=>=>=>="
    //sciankowy, sztucznie dzieli jeden zbior by moc zrobic to co k == 3
    if (t[0] >= t[1]) {
      cout << "TAK\n";
      printRes(0, 1, 2);
      return 0;
    }
    if (t[n - 2] >= t[n - 1]) {
      cout << "TAK\n";
      printRes(n - 4, n - 3, n - 2);
      return 0;
    }

    for (int i = 1; i < n - 1; i++) {
      if (t[i] >= t[i + 1]) {
        cout << "TAK\n";
        printRes(i - 1, i, i + 1);
        return 0;
      }
    }

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

  return 0;
}