#include <bits/stdc++.h> using namespace std; const int maxN = 300; int N; int t[maxN + 1]; long long wynik[maxN + 1]; bool check(int x) { for(int i = 1; i <= N - x + 1; i++){ long long suma = 0; for(int j = 0; j < x; j++){ suma += wynik[i + j]; } if(suma > t[x]){ return 0; } } return 1; } int main() { ios_base::sync_with_stdio(0); cin.tie(); cout.tie(); cin >> N; for(int i = 1; i <= N; i++) cin >> t[i]; long long suma = 0; for(int i = 1; i <= N; i++){ wynik[i] = t[i] - suma; suma += wynik[i]; } for(int i = 1; i <= N; i++){ bool x = check(i); if(!x){ cout << "NIE\n"; return 0; } } cout << "TAK\n"; cout << N << '\n'; for(int i = 1; i <= N; i++){ cout << wynik[i] << " "; } cout << '\n'; 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 | #include <bits/stdc++.h> using namespace std; const int maxN = 300; int N; int t[maxN + 1]; long long wynik[maxN + 1]; bool check(int x) { for(int i = 1; i <= N - x + 1; i++){ long long suma = 0; for(int j = 0; j < x; j++){ suma += wynik[i + j]; } if(suma > t[x]){ return 0; } } return 1; } int main() { ios_base::sync_with_stdio(0); cin.tie(); cout.tie(); cin >> N; for(int i = 1; i <= N; i++) cin >> t[i]; long long suma = 0; for(int i = 1; i <= N; i++){ wynik[i] = t[i] - suma; suma += wynik[i]; } for(int i = 1; i <= N; i++){ bool x = check(i); if(!x){ cout << "NIE\n"; return 0; } } cout << "TAK\n"; cout << N << '\n'; for(int i = 1; i <= N; i++){ cout << wynik[i] << " "; } cout << '\n'; return 0; } |