Codeforces 584 B. Kolya and Tanya (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):

题目大意:

给一个n,表示一张桌子坐了3*n个人

你要给每一个人发钱,可以发1,2,3块,第i个人的钱是ai  (i从0开始)

有一个要求:. ai + ai + n + ai + 2n ≠ 6,
then Tanya is satisfied.

也就是只要有 一组that ai + ai + n + ai + 2n ≠ 6,
 .就可以了

解题思路:

对于n=1的时候,我们可以发现这个三角形有 20种情况符合条件,7种不符合条件;

我们可以这么想,反正只需要至少有一种情况满足就行,所以我们就从它的对立事件想,

就是全部的数量减去它一个也不满足的数量也就是

ret == 27 ^ n --  7 ^ n

只要推出这个来,只需要进行一下快速幂就ok了;

上代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <vector>
#include <queue>
#include <algorithm>
#include <set>
using namespace std;

#define MM(a) memset(a,0,sizeof(a))
#define MM1(a) memset(a, false, sizeof(a))
typedef long long LL;
typedef unsigned long long ULL;
const int maxn = 1e3+5;
const int mod = 1e9 + 7;
const double eps = 1e-7;
const double pi = 3.1415926;

LL quick_mod(LL a, LL b)
{
    LL ans = 1;
    while(b)
    {
        if(b&1)
            ans = (ans*a)%mod;
        b>>=1;
        a = (a*a)%mod;
    }
    return ans;
}
int main()
{
    int n;
    cin>>n;
    LL ans = quick_mod(27, n);
    LL ret = quick_mod(7, n);
    ///cout<<ans<<" " <<ret<<endl;
    ret = (ans%mod - ret%mod +mod)%mod;
    cout<<ret<<endl;
}
时间: 2024-10-29 12:42:22

Codeforces 584 B. Kolya and Tanya (Codeforces Round #324 (Div. 2))的相关文章

Codeforces 584 D. Dima and Lisa ( Codeforces Round #324 (Div. 2))

D. Dima and Lisa time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Dima loves representing an odd number as the sum of multiple primes, and Lisa loves it when there are at most three primes.

Codeforces 584 A. Olesya and Rodion(Codeforces Round #324 (Div. 2))

A. Olesya and Rodion time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Olesya loves numbers consisting of n digits, and Rodion only likes numbers that are divisible by t. Find some number tha

Codeforces 584 C. Marina and Vasya (Codeforces Round #324 (Div. 2))

C. Marina and Vasya time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Marina loves strings of the same length and Vasya loves when there is a third string, different from them in exactly t ch

Codeforces Round #157 (Div. 1) C. Little Elephant and LCM (数学、dp)

C. Little Elephant and LCM time limit per test 4 seconds memory limit per test 256 megabytes input standard input output standard output The Little Elephant loves the LCM (least common multiple) operation of a non-empty set of positive integers. The

HDU 5651 xiaoxin juju needs help(BestCoder Round #77 (div.1)1001)

传送门 xiaoxin juju needs help Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 861    Accepted Submission(s): 243 Problem Description As we all known, xiaoxin is a brilliant coder. He knew **palin

hdu 5563 Clarke and five-pointed star 【BestCoder Round #62 (div.2) 1002】

Click here ~~ Clarke and five-pointed star Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 242    Accepted Submission(s): 144 Problem Description Clarke is a patient with multiple personality d

hdu 5464 Clarke and problem (BestCoder Round #56 (div.2))

Clarke and problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 350    Accepted Submission(s): 151 Problem Description Clarke is a patient with multiple personality disorder. One day, Clarke

hdu 5523 Game 【BestCoder Round #61 (div.2)】

Game Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 315    Accepted Submission(s): 126 Problem Description XY is playing a game:there are N pillar in a row,which numbered from 1 to n.Each pi

Codeforces Round #205 (Div. 2) / 353C Find Maximum (贪心)

Valera has array a, consisting of n integers a0,a1,...,an-1, and function f(x), taking an integer from 0 to 2n-1 as its single argument. Value f(x) is calculated by formula , where value bit(i) equals one if the binary representation of number xconta