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
| #include<algorithm> #include<iostream> #include<iomanip> #include<cstring> #include<cstdlib> #include<vector> #include<cstdio> #include<cmath> #include<queue> using namespace std; typedef long long LL; inline const LL Get_Int() { LL num=0,bj=1; char x=getchar(); while(x<'0'||x>'9') { if(x=='-')bj=-1; x=getchar(); } while(x>='0'&&x<='9') { num=num*10+x-'0'; x=getchar(); } return num*bj; }
typedef long long LL;
const int maxn=5; const LL mod=1e9+7;
struct Matrix { LL n,m,a[maxn][maxn]; Matrix(LL n,LL m) { this->n=n; this->m=m; memset(a,0,sizeof(a)); for(int i=1; i<=n; i++)a[i][i]=1; } LL* operator [] (const LL x) { return a[x]; } Matrix operator * (Matrix b) { Matrix c(n,b.m); memset(c.a,0,sizeof(c.a)); for(int i=1; i<=n; i++) for(int j=1; j<=b.m; j++) for(int k=1; k<=m; k++) c[i][j]=(c[i][j]+a[i][k]*b[k][j]%mod)%mod; return c; } void operator *= (Matrix& b) { *this=*this*b; } Matrix operator ^ (LL b) { Matrix ans(n,m),a=*this; while(b>0) { if(b&1)ans=ans*a; a*=a; b>>=1; } return ans; } };
int a[65]; LL n,f[65][2];
LL Dp(int Now,bool last,bool up) { if(Now<0)return 1; if(!up&&~f[Now][last])return f[Now][last]; int Limit=up?a[Now]:1; LL sum=0; for(int i=0; i<=Limit; i++) if(!(last&i))sum+=Dp(Now-1,i,up&&i==Limit); if(!up)f[Now][last]=sum; return sum; }
LL Cal(LL x) { int cnt=0; while(x) { a[cnt++]=x&1; x>>=1; } return Dp(cnt-1,0,1); }
int main() { memset(f,-1,sizeof(f)); int t=Get_Int(); while(t--) { n=Get_Int(); printf("%lld\n",Cal(n)-1); Matrix A(1,2),B(2,2); A[1][1]=A[1][2]=1; B[1][1]=B[1][2]=B[2][1]=1; B[2][2]=0; A=A*(B^n); printf("%lld\n",A[1][1]); } return 0; }
|