codeforces 185A 矩阵快速幂

Dwarfs have planted a very interesting plant, which is a triangle directed “upwards”. This plant has an amusing feature. After one year a triangle plant directed “upwards” divides into four triangle plants: three of them will point “upwards” and one will point “downwards”. After another year, each triangle plant divides into four triangle plants: three of them will be directed in the same direction as the parent plant, and one of them will be directed in the opposite direction. Then each year the process repeats. The figure below illustrates this process.

Help the dwarfs find out how many triangle plants that point “upwards” will be in n years.

Input
The first line contains a single integer n (0 ≤ n ≤ 1018) — the number of full years when the plant grew.

Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specifier.

Output
Print a single integer — the remainder of dividing the number of plants that will point “upwards” in n years by 1000000007 (109 + 7).

Example
Input
1
Output
3
Input
2
Output
10
Note
The first test sample corresponds to the second triangle on the figure in the statement. The second test sample corresponds to the third one.

题目大意:有一个三角形,刚开始是1个up,0个down,1年后,这个三角形变成了3个up,1个down的
之后的每一年,每个三角形都会变成四个,其中三个是相同方向的,1个是相反方向的,问n年后,共有多少个三角形是up的

自己一直没搞懂究竟要循环多少次 在这里 初始状态是0 0循环n次到n-1 得到的是n-1的结果 再乘一个得到n的结果
分析 推出 x和y的关系式

正x 倒y
1 0
3 1 ``
10 6
… …
3x+y 3y+x
初始状态是 x y 1 0 公式矩阵就是关系式矩阵就是
3 1
1 3 可以得出结果

#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define ff(i,a,b) for(int i = a; i <= b; i++)
#define f(i,a,b) for(int i = a; i < b; i++)
typedef pair<int,int> P;
#define ll long long

struct rec{
	ll v[2][2];
};

const int mod = 1e9 + 7;

rec mul(rec a, rec b)
{
	rec c;
	memset(c.v,0,sizeof(c.v));
	f(i,0,2) f(k,0,2) f(j,0,2)
	c.v[i][j] =(c.v[i][j]+a.v[i][k] * b.v[k][j])%mod;
	return c;
}

rec qpow(ll n, rec a)
{
	rec b;
	b.v[0][0] = b.v[1][1] = 1;
	b.v[0][1] = b.v[1][0] = 0;
	while(n)
	{
		if(n&1) b = mul(b,a);
		a = mul(a,a);
		n >>= 1;
	}
	return b;
}

int main()
{
    ios::sync_with_stdio(false);
   	ll n;
   	cin >> n;
   	if(n == 0) {
   		puts("1");
   		return 0;
   	}
   	rec b,a;
   	a.v[0][0] = 1; a.v[1][0] = 0;
   	a.v[0][1] = 0; a.v[1][1] = 0;
   	b.v[0][0] = b.v[1][1] = 3;
   	b.v[0][1] = b.v[1][0] = 1;
   	rec tmp = qpow(n,b);
   	rec ans = mul(tmp,a);
   	cout << ans.v[0][0] << endl;
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值