概述
You have a given integer nn. Find the number of ways to fill all 3×n3×n tiles with the shape described in the picture below. Upon filling, no empty spaces are allowed. Shapes cannot overlap.
This picture describes when n=4n=4. The left one is the shape and the right one is 3×n3×n tiles.
Input
The only line contains one integer nn (1≤n≤601≤n≤60) — the length.
Output
Print the number of ways to fill.
Examples
Input
4
Output
4
Input
1
Output
0
Note
In the first example, there are 44 possible cases of filling.
In the second example, you cannot fill the shapes in 3×13×1 tiles.
【题解】
找规律 找到公式就可以了;
#include<cstdio>
#include<cmath>
#include<iostream>
#include<vector>
#include<cstring>
using namespace std;
int main(){
int n,ans=1;
cin>>n;
if(n%2==1){
cout<<"0"<<endl;
}else
{
for (int i=1;i<=n/2;i++)
ans=ans* 2;
cout <<ans<< endl;
}
return 0;
}
最后
以上就是醉熏河马为你收集整理的ZCMU 暑期训练四---L题的全部内容,希望文章能够帮你解决ZCMU 暑期训练四---L题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复