#include <iostream> #include <algorithm> #include <vector> using namespace std; int maxi=0; int helps=0; vector <int> fibs; void firstfib(){ fibs.push_back(0); fibs.push_back(1);} void fib(int n){ for(int i=2;i<n+2;i++){ if(fibs[i-1]+fibs[i-2]<=n){ fibs.push_back(fibs[i-1]+fibs[i-2]); maxi=i; }else{ break; } } } bool isfibarray(int n){ for(int i=0;i<maxi;i++){ if(fibs[i]==n) { return true; } } return false; } bool isfib(int n){ for(int i=maxi;i>0;i--){ if(i==maxi && fibs[i]==n){ return true; }else{ int help=n; int s=0; for(int i=maxi;i>0;i--){ if(fibs[i]<(n/2)+1){ if(help%fibs[i]==0){ help=help/fibs[i]; s++; if(s==1 && isfibarray(help)){ return true; }else{ return false; } return false; } } } }}} int main(){ firstfib(); int x; cin>>x; for(int i=0;i<x;i++){ int d; cin>>d; fib(d); if(isfib(d)){ cout<<"TAK"<<endl; } else{ cout<<"NIE"<<endl; } } 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 | #include <iostream> #include <algorithm> #include <vector> using namespace std; int maxi=0; int helps=0; vector <int> fibs; void firstfib(){ fibs.push_back(0); fibs.push_back(1);} void fib(int n){ for(int i=2;i<n+2;i++){ if(fibs[i-1]+fibs[i-2]<=n){ fibs.push_back(fibs[i-1]+fibs[i-2]); maxi=i; }else{ break; } } } bool isfibarray(int n){ for(int i=0;i<maxi;i++){ if(fibs[i]==n) { return true; } } return false; } bool isfib(int n){ for(int i=maxi;i>0;i--){ if(i==maxi && fibs[i]==n){ return true; }else{ int help=n; int s=0; for(int i=maxi;i>0;i--){ if(fibs[i]<(n/2)+1){ if(help%fibs[i]==0){ help=help/fibs[i]; s++; if(s==1 && isfibarray(help)){ return true; }else{ return false; } return false; } } } }}} int main(){ firstfib(); int x; cin>>x; for(int i=0;i<x;i++){ int d; cin>>d; fib(d); if(isfib(d)){ cout<<"TAK"<<endl; } else{ cout<<"NIE"<<endl; } } return 0; } |