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

LightOJ - 1245 Harmonic Number (II) 求同值区间的和

时间:2017-02-21 22:30:01      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:++   http   har   case   close   lightoj   代码   ide   ima   

题目大意:对下列代码进行优化

long long H( int n ) {
    long long res = 0;
    for( int i = 1; i <= n; i++ )
        res = res + n / i;
    return res;
}

 

题目思路:为了避免超时,要想办法进行优化

以9为例:

9/1 = 9

9/2 = 4

9/3 = 3

9/4 = 2

9/5 = 1

9/6 = 1

9/7 = 1

9/8 = 1

9/9 = 1

拿1来看,同为1的区间长度为:9/(9/5)+1-5,

得出通式:值相同的区间长度为:n/(n/i)+1-i。

 

技术分享
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<iostream>
#include<algorithm>
#define INF 0x3f3f3f3f
#define MAXSIZE 1000005
#define LL long long

using namespace std;

int main()
{
    int T,cns=1;
    LL n;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%lld",&n);
        LL i=1;
        LL ans=0;
        while(i<=n)
        {
            ans=ans+(n/(n/i)-i+1)*(n/i);
            i=n/(n/i)+1;
        }
        printf("Case %d: %lld\n",cns++,ans);
    }
    return 0;
}
View Code

 

LightOJ - 1245 Harmonic Number (II) 求同值区间的和

标签:++   http   har   case   close   lightoj   代码   ide   ima   

原文地址:http://www.cnblogs.com/alan-W/p/6426266.html

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