#include<bits/stdc++.h> using namespace std; #define st first #define nd second #define pb push_back #define sz(x) (int)x.size() #define all(x) x.begin(),x.end() #define sor(x) sort(all(x)) #define rev(x) reverse(all(x)) #define rsz(x) resize(x) #define BOOST ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); typedef long long ll; typedef pair<int,int>pii; typedef long double ldl; typedef pair<ll,ll>pll; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<pii> vii; typedef vector<pll>vll; typedef unsigned long long ul; const int mX_N = 5e5+10; const int INF= 1e9+10; int T[mX_N]; int minL[mX_N]; int maxR[mX_N]; //int mini[mX_N]; //int maxi[mX_N]; bool bnd[mX_N]; int n,k; int main() { BOOST cin>>n>>k; T[0]=0; T[n+1]=INF; minL[0]=INF; //mini[n+1]=INF; //maxi[0]=-INF; maxR[n+1]=-INF; bool inc=1; for(int i = 1 ; i<= n ; i++) { cin>>T[i]; if(T[i] <= T[i-1]) inc =false; minL[i]= min(minL[i-1],T[i]); //maxL[i]= min(maxL[i-1],T[i]); } if(inc) { cout<<"NIE\n"; return 0; } for(int i = n ; i> 0 ; i--) { //minR[i]=min(minR[i+1],T[i]); maxR[i]=max(maxR[i+1],T[i]); } if(k==2) { for(int i = 1 ; i < n ; i++) if(minL[i] >= maxR[i+1]) { cout<<"TAK\n"; cout<<i<<'\n'; return 0; } cout<<"NIE\n"; return 0; } if(k == 3) { bnd[n]=1; bnd[0]=1; int ile = 1; for(int i = 1 ; i< n; i++) if(minL[i] >= T[i+1]) { if(!bnd[i]) { bnd[i]=1; ile++; } if(!bnd[i+1]) { bnd[i+1]=1; ile++; } if(ile == 2) { for(int j = 1 ; j< n ; j++) { if(!bnd[j]) { bnd[j]=1; ile++; break; } } } cout<<"TAK\n"; for(int j = 1 ; j< n ; j++) if(bnd[j]) cout<<j<<' '; cout<<'\n'; return 0; } ///////////////////// for(int i = 2 ; i <= n ; i++) if(maxR[i] <= T[i-1]) { if(!bnd[i-1]) { bnd[i-1]=1; ile++; } if(!bnd[i]) { bnd[i]=1; ile++; } if(ile == 2) { for(int j = 1 ; j< n ; j++) { if(!bnd[j]) { bnd[j]=1; ile++; break; } } } cout<<"TAK\n"; for(int j = 1 ; j< n ; j++) if(bnd[j]) cout<<j<<' '; cout<<'\n'; return 0; } cout<<"NIE\n"; return 0; } if(k >= 4) { bnd[n]=1; bnd[0]=1; int ile =1; for(int i = 1; i < n ; i++) if(T[i+1]<=T[i]) { if(!bnd[i-1]) { bnd[i-1]=1; ile++; } if(!bnd[i]) { bnd[i]=1; ile++; } if(!bnd[i+1]) { bnd[i+1]=1; ile++; } if(ile == 3) { for(int j = 1 ; j< n ; j++) { if(!bnd[j]) { bnd[j]=1; ile++; break; } } } cout<<"TAK\n"; for(int j = 1 ; j< n ; j++) if(bnd[j]) cout<<j<<' '; cout<<'\n'; return 0; } cout<<"NIE\n"; return 0; } return 0; }
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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | #include<bits/stdc++.h> using namespace std; #define st first #define nd second #define pb push_back #define sz(x) (int)x.size() #define all(x) x.begin(),x.end() #define sor(x) sort(all(x)) #define rev(x) reverse(all(x)) #define rsz(x) resize(x) #define BOOST ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); typedef long long ll; typedef pair<int,int>pii; typedef long double ldl; typedef pair<ll,ll>pll; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<pii> vii; typedef vector<pll>vll; typedef unsigned long long ul; const int mX_N = 5e5+10; const int INF= 1e9+10; int T[mX_N]; int minL[mX_N]; int maxR[mX_N]; //int mini[mX_N]; //int maxi[mX_N]; bool bnd[mX_N]; int n,k; int main() { BOOST cin>>n>>k; T[0]=0; T[n+1]=INF; minL[0]=INF; //mini[n+1]=INF; //maxi[0]=-INF; maxR[n+1]=-INF; bool inc=1; for(int i = 1 ; i<= n ; i++) { cin>>T[i]; if(T[i] <= T[i-1]) inc =false; minL[i]= min(minL[i-1],T[i]); //maxL[i]= min(maxL[i-1],T[i]); } if(inc) { cout<<"NIE\n"; return 0; } for(int i = n ; i> 0 ; i--) { //minR[i]=min(minR[i+1],T[i]); maxR[i]=max(maxR[i+1],T[i]); } if(k==2) { for(int i = 1 ; i < n ; i++) if(minL[i] >= maxR[i+1]) { cout<<"TAK\n"; cout<<i<<'\n'; return 0; } cout<<"NIE\n"; return 0; } if(k == 3) { bnd[n]=1; bnd[0]=1; int ile = 1; for(int i = 1 ; i< n; i++) if(minL[i] >= T[i+1]) { if(!bnd[i]) { bnd[i]=1; ile++; } if(!bnd[i+1]) { bnd[i+1]=1; ile++; } if(ile == 2) { for(int j = 1 ; j< n ; j++) { if(!bnd[j]) { bnd[j]=1; ile++; break; } } } cout<<"TAK\n"; for(int j = 1 ; j< n ; j++) if(bnd[j]) cout<<j<<' '; cout<<'\n'; return 0; } ///////////////////// for(int i = 2 ; i <= n ; i++) if(maxR[i] <= T[i-1]) { if(!bnd[i-1]) { bnd[i-1]=1; ile++; } if(!bnd[i]) { bnd[i]=1; ile++; } if(ile == 2) { for(int j = 1 ; j< n ; j++) { if(!bnd[j]) { bnd[j]=1; ile++; break; } } } cout<<"TAK\n"; for(int j = 1 ; j< n ; j++) if(bnd[j]) cout<<j<<' '; cout<<'\n'; return 0; } cout<<"NIE\n"; return 0; } if(k >= 4) { bnd[n]=1; bnd[0]=1; int ile =1; for(int i = 1; i < n ; i++) if(T[i+1]<=T[i]) { if(!bnd[i-1]) { bnd[i-1]=1; ile++; } if(!bnd[i]) { bnd[i]=1; ile++; } if(!bnd[i+1]) { bnd[i+1]=1; ile++; } if(ile == 3) { for(int j = 1 ; j< n ; j++) { if(!bnd[j]) { bnd[j]=1; ile++; break; } } } cout<<"TAK\n"; for(int j = 1 ; j< n ; j++) if(bnd[j]) cout<<j<<' '; cout<<'\n'; return 0; } cout<<"NIE\n"; return 0; } return 0; } |