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.
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, coutstreams or the %I64d specifier.
Print a single integer — the remainder of dividing the number of plants that will point "upwards" in n years by1000000007 (109 + 7).
1
3
2
10
The first test sample corresponds to the second triangle on the figure in the statement. The second test sample corresponds to the third one.
题意:
给出 n(0 ~ 10 ^ 18),代表一个正方形经过 n 次的切割后,得到正三角形的个数是多少。
思路:
矩阵快速幂。递推式子:
Ui+1 = 3 X Ui + Di;
Di+1 = Ui + 3 X Di;得出的矩阵就不给出了。
AC:
#include <cstdio> #include <cstring> #include <algorithm> #include <vector> using namespace std; typedef long long ll; typedef vector<ll> vec; typedef vector<vec> mat; const ll MOD = 1000000007; mat mul (mat a, mat b) { mat c(a.size(), vec(b[0].size())); for (int i = 0; i < a.size(); ++i) { for (int j = 0; j < b[0].size(); ++j) { for (int k = 0; k < b.size(); ++k) { c[i][j] = (c[i][j] + a[i][k] * b[k][j]) % MOD; } } } return c; } mat pow (mat a, ll n) { mat b(a.size(), vec(a[0].size())); for (int i = 0; i < a.size(); ++i) b[i][i] = 1; while (n > 0) { if (n & 1) b = mul(b, a); a = mul(a, a); n >>= 1; } return b; } int main() { ll n; while (~scanf("%I64d", &n)) { mat a(2, vec(2)); a[0][0] = a[1][1] = 3; a[0][1] = a[1][0] = 1; a = pow(a, n); printf("%I64d\n", a[0][0]); } return 0; }
相关推荐
Codeforces 185A - Plant 全测试点49个 Codeforces 是一个在线编程平台,提供了大量的编程题目和比赛。其中,185A - Plant 是一个经典的题目,要求编写一个程序来解决植物生长的问题。 在这个题目中,输入是一个...
Plant Simulation是一款面向对象的、图形化的、集成的建模和仿真工具,它允许用户对各种规模的工厂和生产线进行建模、仿真和优化,这包括大规模的跨国企业。Plant Simulation的系统结构和实施都遵循面向对象的原则,...
《Plant Simulation:周金平教程解析》 Plant Simulation是一款强大的离散事件仿真软件,主要用于工业生产系统的模拟和优化。在工业工程、物流管理和制造系统设计等领域有着广泛的应用。本教程由专家周金平主讲,...
### Plant Simulation 概述 **Plant Simulation** 是一款由西门子提供的专业软件工具,主要用于生产系统和过程的模拟与优化。它可以帮助企业通过构建数字模型来探索物流系统的特性和优化其性能,从而提高生产效率并...
Plant 3D支持快速生成ISO图和平立面图,以及输出PCF文件,方便后续的工程加工和施工。 #### 3.2 结构建模 结构建模功能允许用户创建和编辑结构模型,比如绘制栅格和添加型材等。这部分功能有助于在三维设计中加入...
《Plant Simulation 学习教程——基于 eM-Plant 软件的物流仿真解析》 在工业生产和物流管理中,仿真技术已经成为优化流程、提升效率的重要工具。Plant Simulation 是 Siemens 提供的一款强大的离散事件仿真软件,...
### Tecnomatix Plant Simulation 教学:生产与物流仿真的深入解析 #### 一、Tecnomatix Plant Simulation 概述 Tecnomatix Plant Simulation 是一款由 Siemens 提供的专业生产与物流仿真软件。它可以帮助企业通过...
Plant-Simulation安装教程
西门子仿真Plant.Simulation.16.0.0是西门子公司推出的一款先进的仿真软件,主要用于对各种工业流程进行模拟和优化。该软件采用先进的建模和仿真技术,可以帮助工程师在实际投入生产之前,对各种可能的生产过程进行...
2. **Plant Simulation软件使用**:接下来,作者详细讲解了Plant Simulation软件的操作方法,包括界面介绍、模型创建流程、参数设置等,使读者能够快速上手使用该软件。 3. **SimTalk编程语言**:SimTalk是一种专为...
Tecnomatix Plant Simulation 9 for win32 原名em_plant,面向对象的物流、生产线仿真建模软件。
Plant Simulation是一款强大的仿真软件,主要用于工业生产系统的建模和优化。这个"SingleLine_plantsimulation案例"是一个适合初学者入门的教程,旨在帮助用户了解如何使用Plant Simulation进行基本的生产线模拟。 ...
Plant Simulation (Siemens).zip
解决adams_plant问题
Plant Simulation编程语言SimTalk 2.0官方说明 Plant Simulation编程语言SimTalk 2.0是Tecnomatix Plant Simulation软件中的一种编程语言,用于扩展模拟模型的功能和控制。SimTalk语言可以与物流对象和信息流对象...
### AutoCAD Plant 3D教程知识点详解 #### 一、AutoCAD Plant 3D概览 AutoCAD Plant 3D是一款规格驱动的三维建模软件,专为化工、石油、天然气等行业提供工厂设计解决方案。其核心功能在于创建精确的三维模型,...
标题“Plant Simulation”指的是工业仿真领域中的一个特定软件应用,而内容中提到的“Plant Simulation: Discrete-Event Simulation”则明确了这是一种离散事件仿真方法。离散事件仿真主要应用于工业工程领域,用于...
根据标题和描述,“Plant Simulation 15 Release Notes 中文版.pdf”似乎是一份软件更新说明文档,专门针对Plant Simulation软件(也称为Tecnomatix Plant Simulation),这是一款用于工厂仿真和流程优化的工具。...
eM-Plant 仿真软件学习必不可少 很适合初学者用额
"New em-plant" 是一款专业级的工业模拟与优化软件,主要应用于制造业和工程领域。这款软件的核心功能是通过仿真技术对生产流程进行建模、分析和优化,以提高效率、降低成本。学习 "em-plant" 需要一定的专业知识...