C. Everyone is a Winner!(整除分块)

2021-01-26 21:18

阅读:460

标签:div   std   onclick   typedef   map   article   void   property   def   

传送门

题意:

输入一个数n,求出n/i(i取任意)向下取整有几种数,并输出

思路:

整除分块裸题

for(int l=1,r;l1)
{
    r=n/(n/l);
    a[++cnt]=n/l;
}

 

 

cnt代表分块的块的个数,每个块里的值为a[i]=n/l,l为块的左端点,r为块的右端点r=n/(n/l)

代码:

#include 
#include 
#include 
#include string.h>
#include 
#include 
#include 
#include 
#include set>
using namespace std;
typedef long long ll;
const int N=2e6+50;
const int mod=1e9+7;
int a[N];
mapint,int>mp;
void solve(int t)
{
    int n;scanf("%d",&n);
    int cnt=0;
    for(int l=1,r;l1)
    {
        r=n/(n/l);
        a[++cnt]=n/l;
    }
    printf("%d\n0 ",cnt+1);//别忘输出0,i大于n时,n/i都为0
    for(int i=cnt;i>=1;--i)
        printf("%d ",a[i] );
    printf("\n");
}
int main()
{
    //freopen("in.txt","r",stdin);
    int t;
    scanf("%d",&t);for(int i=1;i)solve(i);
    return 0;
}

 

 

C. Everyone is a Winner!(整除分块)

标签:div   std   onclick   typedef   map   article   void   property   def   

原文地址:https://www.cnblogs.com/zzl-dreamfly/p/11965723.html


评论


亲,登录后才可以留言!