Processing math: 100%

嘘~ 正在从服务器偷取页面 . . .

_


CF1485C Floor and Mod 题解

题目链接:CF1485C Floor and Mod

题意

多组询问。给定 x,y ,求 1ax,1byab=amodb(a,b) 个数。

数据范围

1Q100, 1x,y109

这道题有点麻烦 QAQ

先推一波柿子

ab=amodbab=aab×bab=ab+1

显然 b+1a ,同时因为 amodb<b

所以 ab+1<ba<b2+ba[0,b2+b1]

则满足条件的 a 的个数为 min{x,b2+b1}b+1

答案就是

yb=1min{x,b2+b1}b+1

但是这个东西好像不好用数论分块

仔细观察,当 bxϵ,ϵN 时,柿子是这样的

yb=1xb+1

其实写成 y+1b=2xb 可以更明显地看出这是个数论分块的板子

对于 b<xϵ,ϵN 的情况,直接暴力枚举即好了

时间复杂度 O(Qx)

代码:

cpp
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <iomanip>
#include <random>
using namespace std;
#define int long long
#define INF 0x3f3f3f3f3f3f3f3f
#define N (int)()

signed main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);
    // freopen("check.in","r",stdin);
    // freopen("check.out","w",stdout);
    int Q,a,b,x,y,res;
    cin >> Q;
    while(Q--)
    {
        cin >> x >> y;
        a=1,b=1,res=0;
        for(; b*b+b-1<x&&b<=y; b++)
            res+=(b*b+b-1)/(b+1);
        for(int l=b+1,r; l<=min(x,y+1); l=r+1)
        {
            r=min(x/(x/l),y+1);
            res+=x/l*(r-l+1);
        }
        cout << res << '\n';
    }
    return 0;
}

文章作者: q779
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-ND 4.0 许可协议。转载请注明来源 q779 !
评论
你认为这篇文章怎么样?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v3.1.3
  目录