zoukankan      html  css  js  c++  java
  • Kolya and Tanya

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

     排列组合问题:

        减法:27^n - 7 ^n;

        加法:for(i = 0; i < n; i++)ans += 20 * 7^i  * 27^(n-i-1);

    加法:

    #include<iostream>
    #define ll __int64
    const ll MOD = 1e9+7;
    using namespace std;
    ll sum7[100005];
    ll sum27[100005];
    int main(){
        int n;
        cin>> n;
        n--;
        sum27[0] = 1;
        sum7[0] = 1;
        for(int i = 1; i <= n; i++){
            sum27[i] = sum27[i-1]*27%MOD;
        }
        for(int i = 1; i <= n; i++){
            sum7[i] = sum7[i-1]*7%MOD;
        }
        ll ans = 0;
        for(int i = 0; i <= n; i++){
            ans += sum7[i]*sum27[n-i]%MOD;
            ans %= MOD;
        }
        ans = ans*20%MOD;
        cout<< ans;
    }

    减法:

    #include<iostream>
    #define ll __int64
    const ll mod = 1e9+7;
    using namespace std;
    int main(){
        int n;
        ll sum = 1;
        ll num = 1;
        cin >> n;
        for(int i = 0; i < n; i++){
            sum = sum*27%mod;
            num = num*7%mod;
        }
        ll ans = sum - num;
        if(ans < 0)ans += mod;
        cout<< ans;
        return 0;
    }
  • 相关阅读:
    Python学习——网站收集
    基于三轴加速计的运动识别与控制系统
    Unity小记
    Unity3d 札记-Survival Shooting 知识点汇总--受到伤害时屏幕闪血光如何做到
    Unity3d 札记-Survival Shooting 知识点汇总--Navigation 自动寻路的运用
    Unity3d 札记-Survival Shooting 知识点汇总--AnimationController
    Unity3d札记 --TanksTutorial收获与总结
    Unity3d 札记-Tanks Tutorial 知识点汇总--游戏流程的控制
    Unity3d 札记-Tanks Tutorial 知识点汇总---如何发射子弹
    Unity3d 札记-Tanks Tutorial 知识点汇总---子弹爆炸效果的实现
  • 原文地址:https://www.cnblogs.com/ACMessi/p/4858700.html
Copyright © 2011-2022 走看看