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

XDOJ_1170_数学

时间:2016-11-08 07:50:07      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:http   scan   cstring   name   iostream   bsp   int   style   define   

http://acm.xidian.edu.cn/problem.php?id=1170

 

优化一下暴力的过程,将数量一样的放一起。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#define LL long long
using namespace std;

LL n,m;

LL gcd(LL x,LL y)
{
    return y?gcd(y,x%y):x;
}

LL c(LL x,LL y)
{
    return (y*(y+1)*(2*y+1))/6-((x-1)*x*(2*x-1))/6;
}

int main()
{
    while(~scanf("%lld%lld",&n,&m) && n && m)
    {
        LL ans = 0;
        int now = 1;
        while(now <= n)
        {
            int t = n/now,endd = min(m,n/t);
            ans += t*c(now,endd);
            if(endd == m)    break;
            now = endd +1;
        }
        LL x = n*m;
        LL g = gcd(ans,x);
        printf("%lld/%lld\n",ans/g,x/g);
    }
}

 

XDOJ_1170_数学

标签:http   scan   cstring   name   iostream   bsp   int   style   define   

原文地址:http://www.cnblogs.com/zhurb/p/6041297.html

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