zoukankan      html  css  js  c++  java
  • Battlestation Operational

    Battlestation Operational

    Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)

    Problem Description
    > The Death Star, known officially as the DS-1 Orbital Battle Station, also known as the Death Star I, the First Death Star, Project Stardust internally, and simply the Ultimate Weapon in early development stages, was a moon-sized, deep-space mobile battle station constructed by the Galactic Empire. Designed to fire a single planet-destroying superlaser powered by massive kyber crystals, it was the pet project of the Emperor, Darth Vader, and its eventual commander Grand Moff Wilhuff Tarkin to expound the military philosophy of the aptly named Tarkin Doctrine.
    >
    > — Wookieepedia

    In the story of the Rogue One, the rebels risked their lives stolen the construction plan of the Death Star before it can cause catastrophic damage to the rebel base. According to the documents, the main weapon of the Death Star, the Superlaser, emits asymmetric energy in the battlefield that cause photons to annihilate and burns everything in a single shot.

    You are assigned the task to estimate the damage of one shot of the Superlaser.

    Assuming that the battlefield is an n×n grid. The energy field ignited by the Superlaser is asymmetric over the grid. For the cell at i -th row and j -th column, i/j units of damage will be caused. Furthermore, due to the quantum effects, the energies in a cell cancel out if gcd(i,j)1 or i<j .

    The figure below illustrates the damage caused to each cell for n=100 . A cell in black indicates that this cell will not be damaged due to the quantum effects. Otherwise, different colors denote different units of damages.

    Your should calculate the total damage to the battlefield. Formally, you should compute
    f(n)=i=1nj=1iij[(i,j)=1],


    where [(i,j)=1] evaluates to be 1 if gcd(i,j)=1 , otherwise 0 .
     
    Input
    There are multiple test cases.

    Each line of the input, there is an integer n (1n106 ), as described in the problem.

    There are up to 104 test cases.
     
    Output
    For each test case, output one integer in one line denoting the total damage of the Superlaser, f(n) mod 109+7 .
     
    Sample Input
    1 2 3 10
     
    Sample Output
    1 3 8 110
    分析:莫比乌斯反演,d(n)=Σ(d|n) f(d) ;
       d(n)=Σi = (1~n)Σj = (1~i) i/j , f(n) = Σi = (1~n)Σj = (1~i) [gcd(i,j)==1] i/j; 
       要求 f(n), f(n) = d(n) - Σ(d|n) f(d) ( d != n);
    代码:
    #include<cstdio>
    #define mod 1000000007
    #define rep(i,m,n) for(i=m;i<=(int)n;i++)
    const int maxn=1e6+10;
    int n,m,k,t;
    long long p[maxn];
    void init()
    {
        int i,j;
        rep(i,1,maxn-10)
        {
            p[i]++;
            p[i+1]--;
            for(int j=i,cnt=2;j+1<=maxn-10;j+=i,cnt++)
            {
                p[j+1]+=cnt;
                if(j+i+1<=maxn-10)p[j+i+1]-=cnt;
            }
        }
        rep(i,1,maxn-10)p[i]=(p[i]%mod+p[i-1]+mod)%mod;
        rep(i,1,maxn-10)
        {
            for(j=i*2;j<=maxn-10;j+=i)
            {
                p[j]=(p[j]-p[i]+mod)%mod;
            }
        }
        rep(i,1,maxn-10)(p[i]+=p[i-1])%=mod;
    }
    int main()
    {
        int i,j;
        init();
        while(~scanf("%d",&n))printf("%lld
    ",p[n]);
        return 0;
    }
  • 相关阅读:
    提高github下载速度
    小程序兼容问题
    求斐波拉契数列第n位算法优化
    并发编程:ThreadLocal
    MySQL:常见面试题
    2.1语法基础_表达式目录树(EF底层原理的实现)
    ajax发送post请求:
    投资是普通人摆脱阶层固化的唯一靠谱方式
    人脸识别之Python基于OpenCV
    搜索算法“一二”基于VSCode平台C#语言
  • 原文地址:https://www.cnblogs.com/dyzll/p/7424883.html
Copyright © 2011-2022 走看看