1052 - String Growth
Time Limit: 2 second(s) Memory Limit: 32 MB

Zibon just started his courses in Computer science. After having some lectures on programming courses he fell in love with strings. He started to play with strings and experiments on them. One day he started a string of arbitrary (of course positive) length consisting of only {a, b}. He considered it as 1st string and generated subsequent strings from it by replacing all the b's with ab and all the a's with b. For example, if he ith string is abab(i+1)th string will be b(ab)b(ab) = babbab. He found that the Nth string has length X and Mth string has length Y. He wondered what will be length of the Kth string. Can you help him?

Input

Input starts with an integer T (≤ 200), denoting the number of test cases.

Each case begins with five integers N, X, M, Y, K. (0 < N, M, X, Y, K < 109 and N ≠ M).

Output

For each case print one line containing the case number and L which is the desired length (mod 1000000007) or the string "Impossible" if it's not possible.

Sample Input

Output for Sample Input

2

3 16 5 42 6

5 1 6 10 9

Case 1: 68

Case 2: Impossible


PROBLEM SETTER: MD. TOWHIDUL ISLAM TALUKDER
SPECIAL THANKS: JANE ALAM JAN
思路:矩阵快速幂;
感觉这道题的题意有点问题,所给你的条件不知道是否取模,不过最后错了好几次,,和样例可以确定是没取模。
那么说下思路:Fa(n+1)=Fb(n);F(n+1)=Fa(n)+Fb(n);
 
然后给你两个条件,那么你可以设fa(1)=x;fb(1)=y;然后解方程组,然后判定下方程是否有解,其中x>=0&&y>=0;其中系数用矩阵快速幂算下。
  1 #include<stdio.h>
2 #include<algorithm>
3 #include<iostream>
4 #include<string.h>
5 #include<stdlib.h>
6 #include<queue>
7 #include<math.h>
8 #include<vector>
9 using namespace std;
10 typedef long long LL;
11 const LL mod=1e9+7;
12 LL quick1(LL n,LL m)
13 {
14 LL a=1;
15 while(m)
16 {
17 if(m&1)
18 {
19 a=(a*n)%mod;
20 }
21 n=(n*n)%mod;
22 m/=2;
23 }
24 return a;
25 }
26 typedef struct pp
27 {
28 LL m[3][3];
29 pp()
30 {
31 memset(m,0,sizeof(m));
32 }
33 } maxtr;
34 void Init(maxtr *ans)
35 {
36 int i,j,k;
37 for(i=0; i<=1; i++)
38 {
39 for(j=0; j<=1; j++)
40 {
41 if(i==0&&j==0)
42 {
43 ans->m[i][j]=0;
44 }
45 else if(i==1&&j==1)
46 {
47 ans->m[i][j]=1;
48 }
49 else ans->m[i][j]=1;
50 }
51 }
52 }
53 maxtr E()
54 {
55 maxtr ans;
56 int i,j;
57 for(i=0; i<=1; i++)
58 {
59 for(j=0; j<=1; j++)
60 {
61 if(i==j)
62 {
63 ans.m[i][j]=1;
64 }
65 else ans.m[i][j]=0;
66 }
67 }
68 return ans;
69 }
70 maxtr quick( maxtr ans,LL m)
71 {
72 maxtr cc=E();
73 while(m)
74 {
75 if(m&1)
76 {
77 maxtr ak;
78 int s;
79 int i,j;
80 for(i=0; i<=1; i++)
81 {
82 for(j=0; j<=1; j++)
83 {
84 for(s=0; s<=1; s++)
85 {
86 ak.m[i][j]=(ak.m[i][j]+(cc.m[s][j]*ans.m[i][s])%mod)%mod;
87 }
88 }
89 }
90 cc=ak;
91 }
92 maxtr ak;
93 int s;
94 int i,j;
95 for(i=0; i<=1; i++)
96 {
97 for(j=0; j<=1; j++)
98 {
99 for(s=0; s<=1; s++)
100 {
101 ak.m[i][j]=(ak.m[i][j]+(ans.m[i][s]*ans.m[s][j])%mod)%mod;
102 }
103 }
104 }
105 ans=ak;
106 m/=2;
107 }
108 return cc;
109 }
110 LL gcd(LL n, LL m)
111 {
112 if(m==0)
113 {
114 return n;
115 }
116 else if(n%m==0)
117 {
118 return m;
119 }
120 else return gcd(m,n%m);
121 }
122 int main(void)
123 {
124 LL i,j,k;
125 LL s;
126 LL N, X, M, Y, K;
127 scanf("%d",&k);
128 LL acy;
129 LL acx;
130 for(s=1; s<=k; s++)
131 {
132 int flag=0;
133 scanf("%lld %lld %lld %lld %lld",&N,&X,&M,&Y,&K);
134 if(N>M)
135 {
136 swap(N,M);
137 swap(X,Y);
138 }
139 maxtr ak;
140 Init(&ak);
141 maxtr ac=quick(ak,N-1);
142 maxtr bk;
143 Init(&bk);
144 maxtr aak=quick(bk,M-1);
145 LL xx1=(ac.m[0][0]+ac.m[1][0])%mod;
146 LL yy1=(ac.m[0][1]+ac.m[1][1])%mod;
147 LL xx2=(aak.m[0][0]+aak.m[1][0])%mod;
148 LL yy2=(aak.m[0][1]+aak.m[1][1])%mod;
149 //printf("%lld %lld\n",xx1,xx2);
150 //printf("%lld %lld\n",yy1,yy2);
151 LL ccy=yy1;
152 LL xxN=X;
153 LL t=X;
154 LL xxy=yy2;
155 LL ct=Y;
156 LL yyM=Y;
157 LL gc=gcd(xx1,xx2);
158 yy1*=(xx2/gc);
159 yy2*=(xx1/gc);
160 X*=(xx2/gc);
161 Y*=(xx1/gc);
162 yy1-=yy2;
163 X-=Y;
164 if(X<0&&yy1>0||X>0&&yy1<0)flag=1;
165 {
166 if(X==0)
167 {
168 acy=0;
169 if(xxN%xx1)
170 {
171 flag=1;
172 }
173 else
174 {
175 LL ack=quick1(xx1,mod-2);
176 acx=xxN*ack%mod;
177 }
178 }
179 else
180 {
181
182 if(X%yy1)
183 {
184 flag=1;
185 }
186 else
187 { if(yy1>0&&X<0||yy1<0&&X>0)flag=1;
188 LL ack=quick1(yy1,mod-2);
189 acy=X/yy1%mod;
190 xxN-=ccy*acy;
191 if(xxN<0)flag=1;
192 if(xxN%xx1)
193 {
194 flag=1;
195 }
196 else
197 {
198 LL ack=quick1(xx1,mod-2);
199 acx=xxN/xx1;
200 }
201 }
202 }
203
204 }
205 printf("Case %d: ",s);
206 if(flag)
207 {
208 printf("Impossible\n");
209 }
210 else
211 {
212 maxtr cp;
213 Init(&cp);
214 maxtr akk=quick(cp,K-1);
215 LL xxx1=(akk.m[0][0]+akk.m[1][0])*acx%mod;
216 LL yyy1=(akk.m[0][1]+akk.m[1][1])*acy%mod;
217 printf("%lld\n",(xxx1+yyy1)%mod);
218 }
219 }
220 return 0;
221 }

1052 - String Growth的更多相关文章

  1. lightoj 1052 - String Growth & uva 12045 - Fun with Strings 矩阵

    思路:很容易发现规律,数列和Fib数列一样的. 记开始的时候啊a的个数为Y,b的个数为X.建立矩阵. 代码如下: #include<iostream> #include<cstdio ...

  2. 为什么operator>>(istream&, string&)能够安全地读入长度未知的字符串?

    一般而言,实现"读入用户输入的字符串",程序中自然不能对用户输入的长度有所限定.这在C++中很容易实现,而在C中确没那么容易. 这一疑问,我在刚学C++的时候也在脑中闪现过:不过很 ...

  3. hihocoder #1052 基因工程

    传送门:基因工程 这道题拖了好久,一直没有清晰的思路. 当然,$K\le\frac{N}{2}$时,比较简单.下面我着重讲一下当$K>\frac{N}{2}$,即前$K$个字符与后$K$个字符有 ...

  4. BZOJ 1052: [HAOI2007]覆盖问题

    BZOJ 1052: [HAOI2007]覆盖问题 题意:给定平面上横纵坐标在-1e9~1e9内的20000个整数点的坐标,用三个大小相同边平行于坐标轴的正方形覆盖(在边界上的也算),问正方形的边长最 ...

  5. FP—Growth算法

    FP_growth算法是韩家炜老师在2000年提出的关联分析算法,该算法和Apriori算法最大的不同有两点: 第一,不产生候选集,第二,只需要两次遍历数据库,大大提高了效率,用31646条测试记录, ...

  6. PAT 1052 卖个萌 (20)(代码+思路)

    1052 卖个萌 (20)(20 分) 萌萌哒表情符号通常由"手"."眼"."口"三个主要部分组成.简单起见,我们假设一个表情符号是按下列格 ...

  7. PAT——1052. 卖个萌

    萌萌哒表情符号通常由“手”.“眼”.“口”三个主要部分组成.简单起见,我们假设一个表情符号是按下列格式输出的: [左手]([左眼][口][右眼])[右手] 现给出可选用的符号集合,请你按用户的要求输出 ...

  8. 【BZOJ】1052: [HAOI2007]覆盖问题(贪心)

    http://www.lydsy.com/JudgeOnline/problem.php?id=1052 首先膜拜题解orz,表示只能想到二分... 贪心就是每一次找到一个最小的能包围所有点的矩阵,然 ...

  9. Pat 1052 Linked List Sorting (25)

    1052. Linked List Sorting (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A ...

随机推荐

  1. (转载) Java多线程技术

    多线程编程一直是学员们比较头痛和心虚的地方,因为线程执行顺序的不可预知性和调试时候的困难,让不少人在面对多线程的情况下选择了逃避,采用单线程的方式,其实只要我们对线程有了明确的认识,再加上java内置 ...

  2. 如果通过 IP 判断是否是爬虫

    通过 IP 判断爬虫 如果你查看服务器日志,看到密密麻麻的 IP 地址,你一眼可以看出来那些 IP 是爬虫,那些 IP 是正常的爬虫,就像这样: 在这密密麻麻的日志里面,我们不仅要分辨出真正的爬虫 I ...

  3. android studio 生成aar和引用aar

    以android studio 2.0正式版为例 1.aar包是Android studio下打包android工程中src.res.lib后生成的aar文件,aar包导入其他android stud ...

  4. 3.5 Rust Generic Types, Traits, and Lifetimes

    Every programming language has tools for effectively handling the duplication of concepts. In Rust, ...

  5. tomcat 之 httpd session stiky

    # 注释中心主机 [root@nginx ~]# vim /etc/httpd/conf/httpd.conf #DocumentRoot "/var/www/html" #:配置 ...

  6. 【Service】【Database】【MySQL】基础概念

    1. 数据模型:层次模型.网状模型.关系模型 关系模型: 二维关系: 表:row, column 索引:index 视图:view 2. SQL接口:Structured Query Language ...

  7. 【C/C++】日期问题/算法笔记/入门模拟

    最近把算法竞赛入门经典的前半部分看完了,开始看算法笔记入门算法. 看了前半部分的例题,很多是算法竞赛入门经典中出现过的,但是感觉这本书写的更适合初学者,而且真的很像考试笔记,通俗易懂. //日期问题 ...

  8. C# 使用管理员权限运行程序

    最近在开发OPCServer组件过程中,在注册opcServer是总是返回false,后来查找原因得知在本地主机注册opcServer时,需要使用管理员权限. OPCServer在一台机器上部署时只需 ...

  9. Nginx区分内部与外部

    目录 一.简介 二.配置 一.简介 场景: 当网站需要维护时,访问任何连接都显示维护页面 原理: 将任何访问都重定向到维护页面. 二.配置 server { listen 80; index inde ...

  10. 解决用creact-react-app新建React项目不支持 mobx装饰器模式导致报错问题 。

    创建react项目 create-react-app mobx-demo cd my-app npm run start 使用react-app-rewired npm install customi ...