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
//
//  main.cpp
//  2022-2-pod-podwyzki
//
//  Created by Marek on 14/12/2022.
//

#include <iostream>
#include <algorithm>

constexpr int MAXN = 1e6;

int t[MAXN];
int mnpref[MAXN];
int mxsuf[MAXN];
int n, k;

bool try1() {
    if (k < 4) {
        return false;
    }
    // is sorted
    for (int i = 1; i < n; i++) {
        if (t[i] <= t[i - 1]) {
            std::cout << "TAK\n";
            if (i == n - 1) { // last
                for (int j = 0; j < k - 3; j++) {
                    std::cout << j + 1 << ' ';
                }
                std::cout << i - 1 << ' ' << i << " \n";
                return true;
            }
            if (i == 1) {
                std::cout << "1 2 ";
                for (int j = 0; j < k - 3; j++) {
                    std::cout << j + 3 << ' ';
                }
                std::cout << '\n';
                return true;
            }
            
            int lft = k - 4;
            
            for (int j = 1; j < i - 1 && lft > 0; j++, lft--) {
                std::cout << j << ' ';
            }
            std::cout << i - 1 << ' ' << i << ' ' << i + 1 << ' ';
            for (int j = i + 2; lft > 0; j++, lft--) {
                std::cout << j << ' ';
            }
            std::cout << '\n';
            return true;
        }
    }
    std::cout << "NIE\n";
    return true;
}

bool try2() {
    if (k != 3) {
        return false;
    }
    if (t[0] >= t[n - 1]) {
        std::cout << "TAK\n1 " << n - 1 << " \n";
        return true;
    }
    
    int mn = t[0], mx = t[0];
    for (int i = 0; i < n; i++) {
        mn = std::min(mn, t[i]);
        mx = std::max(mx, t[i]);
    }
    for (int i = 1; i < n - 1; i++) {
        if (t[i] <= t[0] || t[i] >= t[n - 1]) {
            std::cout << "TAK\n" << i << ' ' << i + 1 << " \n";
            return true;
        }
    }
    
    
    std::cout << "NIE\n";
    return true;
}

bool try3() {
    if (k != 2) {
        return false;
    }
    mnpref[0] = t[0];
    for (int i = 1; i < n; i++) {
        mnpref[i] = std::min(mnpref[i - 1], t[i]);
    }
    mxsuf[n - 1] = t[n - 1];
    for (int i = n - 2; i >= 0; i--) {
        mxsuf[i] = std::max(mxsuf[i + 1], t[i]);
    }
    
    for (int i = 0; i < n - 1; i++) {
        if (mnpref[i] >= mxsuf[i + 1]) {
            std::cout << "TAK\n" << i + 1 << " \n";
            return true;
        }
    }
    std::cout << "NIE\n";
    return true;
}

int main(int argc, const char * argv[]) {
    std::ios_base::sync_with_stdio(0);
    std::cin.tie(0);
    std::cout.tie(0);
    
    std::cin >> n >> k;
    for (int i = 0; i < n; i++) {
        std::cin >> t[i];
    }
    
    if (n == 2) {
        if (t[0] < t[1]) {
            std::cout << "NIE\n";
        } else {
            std::cout << "TAK\n1 \n";
        }
        return 0;
    }
    
    // is sorted
    if (try1()) {
        return 0;
    }
    if (try2()) {
        return 0;
    }
    if (try3()) {
        return 0;
    }
    return 0;
}