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
#include <iostream>
#include <fstream>
#include <algorithm>
#include <time.h>

using namespace std;

int* a;
int n, k;
int * prefmin;
int * sufmax;
int * odp;
bool czy_ros(){
    for(int i=1; i<n; i++)
        if(a[i]<=a[i-1])
            return 0;
    return 1;
}

void genmm(){
    prefmin = new int[n];
    sufmax = new int[n];
    prefmin[0]=a[0];
    for(int i=1; i<n; i++)
        prefmin[i]=min(a[i], prefmin[i-1]);
    sufmax[n-1]=a[n-1];
    for(int i=n-2; i>=0; i--)
        sufmax[i]=max(a[i], sufmax[i+1]);
}

int dla2(){
    genmm();
    for(int i=0; i<n-1; i++)
        if(prefmin[i]>=sufmax[i+1])
            return i;
    return -1;
}

pair<int, int> dla3(){
    genmm();
    for(int i=1; i<n-1; i++){
        if(a[i]==sufmax[0]||a[i]==prefmin[n-1])
            return pair<int, int>(i-1, i);
    }
    if(a[0]==sufmax[0]) return pair<int, int>(0, 1);
    if(a[n-1]==prefmin[n-1]) return pair<int, int>(n-3, n-2);
    return pair<int, int>(-1, -1);
}

bool dla4(){
    if(czy_ros()) { return 0;}
    int it=0;
    while(a[it+1]>a[it]) it++;
    ///czyli a[it+1]<=a[it]; chcemy miec it-1, it, it+1
    int s=k-4;
    if(it-1==-1 || it+1==n-1) s++;
    int j=0;
    for(int i=0; i<s; i++){
        while(j>=it-1 && j<=it+1) j++;
        odp[i]=j;
        j++;
    }
        if(it-1!=-1) odp[s++]=it-1;
        odp[s++]=it;
        if(it+1!=n-1) odp[s++]=it+1;
    sort(odp, odp+k-1);
    return 1;
}

void rozw(){
    bool czytak;
    if(k==2){
        int zmpom = dla2();
        czytak = (zmpom!=-1);
        odp[0]=zmpom;
        delete[] prefmin;
        delete[] sufmax;
    }
    if(k==3){
        pair<int, int> zmpom = dla3();
        czytak = (zmpom.first!=-1);
        odp[0]=zmpom.first;
        odp[1]=zmpom.second;
        delete[] prefmin;
        delete[] sufmax;
    }
    if(k>=4){
        czytak=dla4();
    }
    if(czytak){
        printf("TAK\n");
        for(int i=0; i<k-1; i++)
            printf("%d ", odp[i]+1);
        } else{
            odp[0]=-1;
            printf("NIE");
        }
}



//#define DEBLOS

int main()
{
    srand(time(NULL));
    scanf("%d %d", &n, &k);
    a=new int[n];
    odp=new int[k];
    #ifndef DEBLOS
    for(int i=0; i<n; i++)
        scanf("%d", a+i);
    #endif // DEBLOS
    #ifdef DEBLOS
    for(int j=0; j<1000; j++){
        for(int i=0; i<n; i++)
            a[i]=rand() %100;
        rozw();
        int zmpom = testuj_rozw();
        if(zmpom==1 || zmpom==2){
            for(int i=0; i<n; i++)
                cout << a[i] << " ";
            break;
        }
    }
    #endif // DEBLOS
    #ifndef DEBLOS
    rozw();
    //testuj_rozw();
    #endif // DEBLOS
    return 0;
}