codeforces 630 I Parking Lot (规律&&组合)

Parking Lot
time limit per test
0.5 seconds
memory limit per test
64 megabytes
input
standard input
output
standard output

To quickly hire highly skilled specialists one of the new IT City companies made an unprecedented move. Every employee was granted a car, and an employee can choose one of four different car makes.

The parking lot before the office consists of one line of (2n - 2) parking spaces. Unfortunately the total number of cars is greater than the parking lot capacity. Furthermore even amount of cars of each make is greater than the amount of parking spaces! That's why there are no free spaces on the parking lot ever.

Looking on the straight line of cars the company CEO thought that parking lot would be more beautiful if it contained exactly n successive cars of the same make. Help the CEO determine the number of ways to fill the parking lot this way.

Input

The only line of the input contains one integer n (3 ≤ n ≤ 30) — the amount of successive cars of the same make.

Output

Output one integer — the number of ways to fill the parking lot by cars of four makes using the described way.

Examples
Input
3
Output
24
Note

Let's denote car makes in the following way: A — Aston Martin, B — Bentley, M — Mercedes-Maybach, Z — Zaporozhets. For n = 3 there are the following appropriate ways to fill the parking lot: AAAB AAAM AAAZ ABBB AMMM AZZZ BBBA BBBM BBBZ BAAA BMMM BZZZ MMMA MMMB MMMZ MAAA MBBB MZZZ ZZZA ZZZB ZZZM ZAAA ZBBB ZMMM

Originally it was planned to grant sport cars of Ferrari, Lamborghini, Maserati and Bugatti makes but this idea was renounced because it is impossible to drive these cars having small road clearance on the worn-down roads of IT City.

正如题目:对排列组合应用,有n个相同的车停在一起时,此时又2*n-2个停车位!

                                                           左                                   中                                       右

             <当n==4>时                     4*3*4                             3*4*3                                  4*3*4

                           5                           4*3*4*4                  3*4*3*4+4*3*4*3                    4*4*3*4

                    (1)当n辆车停在两端时: 左加右=2*(3*pow(4,n-2));

                    (2)当n辆车停在中间时:(n-3)*3*3*pow(4,n-3);

  ACcode

#include<stdio.h>
#include<math.h>
int main()
{
	__int64  n;
	while(scanf("%I64d",&n)!=EOF)
	{
		__int64 t1,t2;
		t1=2*3*pow(4,n-2);
		t2=(n-3)*3*3*pow(4,n-3);
		printf("%I64d\n",t1+t2);
	}
} 


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值