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

bzoj 1257 [CQOI2007]余数之和——数论分块

时间:2018-12-13 10:23:28      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:name   pac   int   string   .com   cst   scanf   端点   fine   

题目:https://www.lydsy.com/JudgeOnline/problem.php?id=1257

\( n\%i = n - \left \lfloor n/i \right \rfloor * i \)

注意 n<k 时当前块的右端点可能超过 n !

#include<cstdio>
#include<cstring>
#include<algorithm>
#define ll long long
using namespace std;
int n,k;ll ans;
int main()
{
  scanf("%d%d",&n,&k);
  int lm=min(n,k);
  for(int i=1,j,d;i<=lm;i=j+1)
    {
      d=k/i; j=min(k/d,n);//min!!!
      ans+=(ll)d*(i+j)*(j-i+1)>>1ll;
    }
  printf("%lld\n",(ll)n*k-ans);
  return 0;
}

 

bzoj 1257 [CQOI2007]余数之和——数论分块

标签:name   pac   int   string   .com   cst   scanf   端点   fine   

原文地址:https://www.cnblogs.com/Narh/p/10112042.html

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