Plant

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).

Sample test(s)
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.
每次按图示生出小三角形,问最后出来多少向上的三角形。
设an是n次后向上的三角形,bn是向下的个数,那么可以发现,一个向上可以生出3个向上,一个向下可以生出1个向上,就是
an = 3*a(n-1) + b(n-1);
又三角形个数是一定的,就是an + bn 是4的n-1次方,就可以化简第一个式子,下面就是推导表达式了,高中数学题,过程电脑不好写,反正我会写。
之后就是一个快速幂。

#include<cstdio>
#include<cstring>
#include<iostream>
#include<queue>
#include<vector>
#include<algorithm>
#include<string>
#include<cmath>
#include<set>
#include<map>
#include<vector>
using namespace std;
typedef long long ll;
const int inf = 0x3f3f3f3f;
const int maxn = 1005;
const ll mod = 1000000007;
ll pow_mod(ll a, ll n)
{
    if (n== 0)return 1;
    ll x = pow_mod(a, n / 2);
    ll ans = x*x%mod;
    if (n % 2 == 1)
        ans = ans*a%mod;
    return ans;
}
int main()
{
    ll i, j, m, n, ans, t;
    cin >> n;
    if (n == 0)
        cout << "1" << endl;
    else
        cout << (pow_mod(2, 2 * n - 1) + pow_mod(2, n - 1)) % mod << endl;
    return 0;
}
在使用列表遍历输出非入侵植物元素时出现 `'plant 没有定义'` 的错误,通常是由于在引用 `plant` 变量时,它确实还未被定义。这种情况可能发生在代码试图在循环外部访问 `plant` 变量,或者循环本身没有正确执行。 以下是可能出现问题的几种情况及解决办法: #### 情况一:在循环外部访问 `plant` 变量 如果代码在循环外部尝试使用 `plant` 变量,就会出现 `'plant 没有定义'` 的错误。例如: ```python n = int(input()) all_plants = [] for i in range(n): plant = input() all_plants.append(plant) m = int(input()) invasive_plants = [] for i in range(m): invasive_plant = input() invasive_plants.append(invasive_plant) invasive_set = set(invasive_plants) # 错误示例:在循环外部访问 plant print(plant) for plant in all_plants: if plant not in invasive_set: print(plant) ``` 解决办法是确保只在循环内部使用 `plant` 变量,或者将需要使用 `plant` 变量的代码逻辑放在循环内部。 #### 情况二:循环未正确执行 如果循环因为某些条件没有执行,那么 `plant` 变量就不会被定义。例如,当 `all_plants` 列表为空时,循环不会执行,此时如果在循环外部尝试访问 `plant` 变量,就会出现错误。 ```python all_plants = [] invasive_plants = [] invasive_set = set(invasive_plants) # 错误示例:all_plants 为空,循环不执行 for plant in all_plants: if plant not in invasive_set: print(plant) # 在循环外部访问 plant print(plant) ``` 解决办法是在使用 `plant` 变量之前,确保循环已经正确执行,或者添加对列表是否为空的检查。 以下是正确的代码示例: ```python n = int(input()) all_plants = [] for i in range(n): plant = input() all_plants.append(plant) m = int(input()) invasive_plants = [] for i in range(m): invasive_plant = input() invasive_plants.append(invasive_plant) invasive_set = set(invasive_plants) for plant in all_plants: if plant not in invasive_set: print(plant) ```
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值