hdu 6134 Battlestation Operational [反演]【数学】

68 篇文章 0 订阅

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6134
———————————————————————————————————————————
Battlestation Operational

Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 187 Accepted Submission(s): 100

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)=ni=1ij=1ij[(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 (1≤n≤106), 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

Source
2017 Multi-University Training Contest - Team 8
———————————————————————————————————————————
题意:给你一个n让你计算 f(n)=ni=1ij=1ij[(i,j)=1] ,


考虑 g[i]=ij=1ij,h[i]=ij=1ij[(i,j)=1],f[n]=ni=1h[i]

显然有

g[i]=d|ih[id]h[i]=d|iμ(d)g[id]

所以得到 g[i] 后,可以通过筛法计算出 h[i] ,然后前缀和处理一下就得到了 f[i]

所以问题就是如何求 g[i] ,
很显然 枚举 i nn的做法求出来,但是有点爆啊

所以这里采取枚举 j 的做法,
g[j]=1,g[j+1,j2]=2,g[j2+1,j3]=3,...,g[jk+1,n]=k+1

转化一下,就是
g[j,n]+=1,g[j+1,n]+=1,g[j2+1,n]+=1,...,g[jk+1,n]+=1

所以在每个 +1 开始的位置加上1,然后前缀和处理一下就行了

我这里写的麻烦了,其实不用把 mu[] 求出来,直接计算就行.

附本题代码
———————————————————————————————————————————

int n;
LL g[N],f[N];
int mu[N],prime[N],vis[N],cnt;
void Init()
{
    memset(vis,0,sizeof(vis));
    mu[1] = 1;
    cnt = 0;
    for(int i=2; i<N; i++)
    {
        if(!vis[i])
        {
            prime[cnt++] = i;
            mu[i] = -1;
        }
        for(int j=0; j<cnt&&i*prime[j]<N; j++)
        {
            vis[i*prime[j]] = 1;
            if(i%prime[j]) mu[i*prime[j]] = -mu[i];
            else
            {
                mu[i*prime[j]] = 0;
                break;
            }
        }
    }
}

int main(){
    Init();
    for(int i=1;i<N;i++){
        g[i]++;
        for(int j=i;j<N;j+=i) g[j+1]++;
    }
    for(int i=1;i<N;i++) g[i]+=g[i-1];

    for(int i=1;i<N;i++)
        for(int j=i;j<N;j+=i)
            f[j]=(f[j]+mu[i]*g[j/i])%MOD;

    for(int i=1;i<N;i++) f[i]=(f[i]+f[i-1])%MOD;

    while(~scanf("%d",&n)) printf("%lld\n",f[n]);

    return 0;
}
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值