#include<iostream> using namespace std; int t [305]; int maxed [305]; int pref [305]; int sums [305]; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; for(int i=1;i<=n;i++){ cin >> t[i]; for(int j=2;j<i;j++){ sums[j]-=maxed[i-j]; } int pom_max=t[1]; for(int j=2;j<=i;j++){ pom_max=min(pom_max, t[j]-sums[j]); } maxed[i]=pom_max; for(int j=2;j<=n;j++){ sums[j]+=maxed[i]; } pref[i]=pref[i-1]+maxed[i]; if(pref[i]!= t[i]){ cout << "NIE"; return 0; } } cout << "TAK\n"; cout << n << "\n"; for(int i=1;i<=n;i++) { cout << maxed[i] << " "; } 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 | #include<iostream> using namespace std; int t [305]; int maxed [305]; int pref [305]; int sums [305]; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; for(int i=1;i<=n;i++){ cin >> t[i]; for(int j=2;j<i;j++){ sums[j]-=maxed[i-j]; } int pom_max=t[1]; for(int j=2;j<=i;j++){ pom_max=min(pom_max, t[j]-sums[j]); } maxed[i]=pom_max; for(int j=2;j<=n;j++){ sums[j]+=maxed[i]; } pref[i]=pref[i-1]+maxed[i]; if(pref[i]!= t[i]){ cout << "NIE"; return 0; } } cout << "TAK\n"; cout << n << "\n"; for(int i=1;i<=n;i++) { cout << maxed[i] << " "; } return 0; } |