Codeforces Round #324 (Div. 2)B. Kolya and Tanya

time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Kolya loves putting gnomes at the circle table and giving them coins, and Tanya loves studying triplets of gnomes, sitting in the vertexes of an equilateral triangle.

More formally, there are 3n gnomes sitting in a circle. Each gnome can have from 1 to 3 coins. Let's number the places in the order they occur in the circle by numbers from 0 to 3n - 1, let the gnome sitting on the i-th place have ai coins. If there is an integer i (0 ≤ i < n) such that ai + ai + n + ai + 2n ≠ 6, then Tanya is satisfied.

Count the number of ways to choose ai so that Tanya is satisfied. As there can be many ways of distributing coins, print the remainder of this number modulo 109 + 7. Two ways, a and b, are considered distinct if there is index i (0 ≤ i < 3n), such that ai ≠ bi (that is, some gnome got different number of coins in these two ways).

Input

A single line contains number n (1 ≤ n ≤ 105) — the number of the gnomes divided by three.

Output

Print a single number — the remainder of the number of variants of distributing coins that satisfy Tanya modulo 109 + 7.

Sample test(s)
input
1
output
20
input
2
output
680
Note

20 ways for n = 1 (gnome with index 0 sits on the top of the triangle, gnome 1 on the right vertex, gnome 2 on the left vertex):


英语不好,看了半天才看懂

题意:有3n个数ai (0<=i<=3n-1),且 ai + ai + n + ai + 2n ≠ 6(0<=i<n)

当时以为所有的都满足,那样的话样例2就不对了。

后面才知道ai + ai + n + ai + 2n = 6(0<=i<n)全部满足这种情况就不可以。

所有的情况3^3n。

不可以的情况7^n。

答案就是3^3n-7^n

#include
    
    
     
     
#include
     
     
      
      
#include
      
      
       
       
#include
       
       
        
        
using namespace std;

const int N = 300001;
long long a[N];
long long b[N];
long long M = 1000000007;
int main(void)
{
    int i, j;
    int n = 100000;
    b[0] = a[0] = 1;
    int m = 3*n;
    for(i = 1; i <= m; ++i)
        a[i] = (a[i-1]*3)%M;
    for(i = 1; i <= n; ++i)
        b[i] = (b[i-1]*7)%M;
    while(~scanf("%d", &n))
    {
        long long ans = (a[3*n]-b[n]+M)%M;
        printf("%I64d\n", ans);
    }
    return 0;
}

       
       
      
      
     
     
    
    



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值