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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#include <iostream>

constexpr int maxN = 5e5;

constexpr int BASE = (1 << 19);
constexpr int INF = 1e9 + 7;

int n, k;
int a[maxN + 1];

int tree_min[2 * BASE];
int tree_max[2 * BASE];

void build() {
    for(int i=1; i<=n; i++) {
        tree_min[i + BASE - 1] = a[i];
        tree_max[i + BASE - 1] = a[i];
    }

    for(int i=n+1; i<=BASE; i++) {
        tree_min[i + BASE - 1] = INF;
        //tree_max[i + BASE - 1] = -INF;
    }

    for(int i=BASE-1; i>=1; i--) {
        tree_min[i] = std::min(tree_min[i << 1], tree_min[(i << 1) + 1]);
        tree_max[i] = std::max(tree_max[i << 1], tree_max[(i << 1) + 1]);
    }
}

int query_min(int l, int r) {
    l += BASE - 1;
    r += BASE - 1;

    int min = std::min(tree_min[l], tree_min[r]);

    while((l >> 1) != (r >> 1)) {
        if(~l & 1) {
            min = std::min(min, tree_min[l + 1]);
        }

        if(r & 1) {
            min = std::min(min, tree_min[r - 1]);
        }

        l >>= 1;
        r >>= 1;
    }

    return min;
}

int query_max(int l, int r) {
    l += BASE - 1;
    r += BASE - 1;

    int max = std::max(tree_max[l], tree_max[r]);

    while((l >> 1) != (r >> 1)) {
        if(~l & 1) {
            max = std::max(max, tree_max[l + 1]);
        }

        if(r & 1) {
            max = std::max(max, tree_max[r - 1]);
        }

        l >>= 1;
        r >>= 1;
    }

    return max;
}

void solve_2() {
    for(int i=1; i<=n-1; i++) {
        if(query_min(1, i) >= query_max(i + 1, n)) {
            std::cout << "TAK\n" << i;
            return;
        }
    }

    std::cout << "NIE";
}

void solve_3() {
    for(int i=2; i<=n-1; i++) {
        if(query_min(1, i - 1) >= a[i] || a[i] >= query_max(i + 1, n)) {
            std::cout << "TAK\n" << i - 1 << ' ' << i;
            return;
        }
    }

    std::cout << "NIE";
}

void solve_4plus() {
    if(a[1] >= a[2]) {
        std::cout << "TAK\n";

        for(int i=1; i<=k-2; i++) {
            std::cout << i << ' ';
        }
        std::cout << k - 1;

        return;
    }

    for(int i=2; i<=n-2; i++) {
        if(a[i] >= a[i + 1]) {
            std::cout << "TAK\n";

            for(int j=1; j<=std::min(k-4, i-2); j++) {
                std::cout << j << ' ';
            }
            std::cout << i - 1 << ' ' << i << ' ' << i + 1;
            
            if(i - 2 < k - 4) {
                for(int j=i+2; j<=k; j++) {
                    std::cout << ' ' << j;
                }
            }

            return;
        }
    }

    if(a[n - 1] >= a[n]) {
        std::cout << "TAK\n";

        for(int i=k-1; i>=2; i--) {
            std::cout << n - i << ' ';
        }
        std::cout << n - 1;

        return;
    }

    std::cout << "NIE";
}

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

    std::cin >> n >> k;

    for(int i=1; i<=n; i++) {
        std::cin >> a[i];
    }

    if(k == 2) {
        build();
        solve_2();
    }
    else if(k == 3) {
        build();
        solve_3();
    }
    else {
        solve_4plus();
    }
}