码迷,mamicode.com
首页 > 其他好文 > 详细

LightOj1007 - Mathematically Hard(欧拉函数)

时间:2016-10-24 20:54:32      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:ide   algorithm   scanf   int   ble   .com   art   blank   求值   

题目链接:http://lightoj.com/volume_showproblem.php?problem=1007

题意:给你两个数a和b,求他们之间所有数的欧拉值得平方和; a and b (2 ≤ a ≤ b ≤ 5 * 106).

线性打表求值即可;

结果会爆long long,要用unsigned long long %llu形式;

技术分享
#include <stdio.h>
#include <string.h>
#include <algorithm>
typedef unsigned long long LL;
#define N 5000001
using namespace std;

int f[N] = {0};
LL ans[N] = {0};

void Init()
{
    for(int i=2; i<N; i++)
    {
        if(f[i]) continue;
        for(int j=i; j<N; j+=i)
        {
            if(!f[j]) f[j] = j;
            f[j] = f[j]/i*(i-1);
        }
    }
    ans[0] = 0;
    for(int i=1; i<N; i++)
        ans[i] = ans[i-1] + (LL)f[i]*f[i];
}

int main()
{
    Init();

    int T, a, b, t = 1;
    scanf("%d", &T);
    while(T--)
    {
        scanf("%d %d", &a, &b);
        printf("Case %d: %llu\n", t++, ans[b]-ans[a-1]);
    }
    return 0;
}
View Code

 

LightOj1007 - Mathematically Hard(欧拉函数)

标签:ide   algorithm   scanf   int   ble   .com   art   blank   求值   

原文地址:http://www.cnblogs.com/zhengguiping--9876/p/5994207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!