codeforces822D (86/600)

D. My pretty girl Noora
time limit per test1.5 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
In Pavlopolis University where Noora studies it was decided to hold beauty contest “Miss Pavlopolis University”. Let’s describe the process of choosing the most beautiful girl in the university in more detail.

The contest is held in several stages. Suppose that exactly n girls participate in the competition initially. All the participants are divided into equal groups, x participants in each group. Furthermore the number x is chosen arbitrarily, i. e. on every stage number x can be different. Within each group the jury of the contest compares beauty of the girls in the format “each with each”. In this way, if group consists of x girls, then comparisons occur. Then, from each group, the most beautiful participant is selected. Selected girls enter the next stage of the competition. Thus if n girls were divided into groups, x participants in each group, then exactly participants will enter the next stage. The contest continues until there is exactly one girl left who will be “Miss Pavlopolis University”

But for the jury this contest is a very tedious task. They would like to divide the girls into groups in each stage so that the total number of pairwise comparisons of the girls is as few as possible. Let f(n) be the minimal total number of comparisons that should be made to select the most beautiful participant, if we admit n girls to the first stage.

The organizers of the competition are insane. They give Noora three integers t, l and r and ask the poor girl to calculate the value of the following expression: t0·f(l) + t1·f(l + 1) + … + tr - l·f(r). However, since the value of this expression can be quite large the organizers ask her to calculate it modulo 109 + 7. If Noora can calculate the value of this expression the organizers promise her to help during the beauty contest. But the poor girl is not strong in mathematics, so she turned for help to Leha and he turned to you.

Input
The first and single line contains three integers t, l and r (1 ≤ t < 109 + 7, 2 ≤ l ≤ r ≤ 5·106).

Output
In the first line print single integer — the value of the expression modulo 109 + 7.

Example
input
2 2 4
output
19
Note
Consider the sample.

It is necessary to find the value of .

f(2) = 1. From two girls you can form only one group of two people, in which there will be one comparison.

f(3) = 3. From three girls you can form only one group of three people, in which there will be three comparisons.

f(4) = 3. From four girls you can form two groups of two girls each. Then at the first stage there will be two comparisons, one in each of the two groups. In the second stage there will be two girls and there will be one comparison between them. Total 2 + 1 = 3 comparisons. You can also leave all girls in same group in the first stage. Then comparisons will occur. Obviously, it’s better to split girls into groups in the first way.

Then the value of the expression is .

其实就是找个最小的分组…

#include<bits/stdc++.h>
using namespace std;
#define int long long
int mo=1e9+7;
bool shai[5000100];
int sus[5000100],dp[5000100];
main()
{
    int t,z,y;
    cin>>t>>z>>y;
    for(int a=2;a<=5000000;a++)
    {
        if(shai[a])continue;
        for(int b=a+a;b<=5000000;b+=a)
        {
            shai[b]=1;
        }
    }
    for(int a=2;a<=5000000;a++)
    {
        if(shai[a])continue;
        sus[++sus[0]]=a;
    }
    dp[1]=dp[2]=1;
    for(int a=3;a<=y;a++)
    {
        if(!shai[a])
        {
            dp[a]=(a-1)/2*a*1ll;
            dp[a]%=mo;
            continue;
        }
        for(int b=1;b<=sus[0];b++)
        {
            if(a%sus[b])continue;
            int gs=a/sus[b];
            dp[a]=gs*dp[sus[b]]%mo+dp[gs];
            dp[a]%=mo;
            break;
        }
    }
    int fs=0;
    for(int a=y;a>=z;a--)
    {
        fs*=t;
        fs+=dp[a];
        fs%=mo;
    }
    cout<<fs;
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值