zoukankan      html  css  js  c++  java
  • Friends number NBUT

    Paula and Tai are couple. There are many stories between them. The day Paula left by airplane, Tai send one message to telephone 2200284, then, everything is changing… (The story in “the snow queen”).

    After a long time, Tai tells Paula, the number 220 and 284 is a couple of friends number, as they are special, all divisors of 220’s sum is 284, and all divisors of 284’s sum is 220. Can you find out there are how many couples of friends number less than 10,000. Then, how about 100,000, 200,000 and so on.

    The task for you is to find out there are how many couples of friends number in given closed interval [a,b]。

    输入
    There are several cases.
    Each test case contains two positive integers a, b(1<= a <= b <=5,000,000).
    Proceed to the end of file.
    输出
    For each test case, output the number of couples in the given range. The output of one test case occupied exactly one line.
    样例输入
    1 100
    1 1000
    样例输出
    0
    1
    提示
    6 is a number whose sum of all divisors is 6. 6 is not a friend number, these number is called Perfect Number.

    //对5000000之内的每个数的所有因子暴力打表求和竟然不会超时,我擦。。。很强
    
    
    #include<map>
    #include<set>
    #include<queue>
    #include<stack>
    #include<vector>
    #include<math.h>
    #include<cstdio>
    #include<sstream>
    #include<numeric>//STL数值算法头文件
    #include<stdlib.h>
    #include <ctype.h>
    #include<string.h>
    #include<iostream>
    #include<algorithm>
    #include<functional>//模板类头文件
    using namespace std;
    
    typedef long long ll;
    const int maxn=11000;
    const int INF=0x3f3f3f3f;
    
    int f[5000010];
    int xA[200],xB[200];
    
    int main()
    {
        for(int i=1; i<=5000000; i++)//暴力打表,把每个数的所以因子的和求出来
        {
            int xsk=i+i;
            while(xsk<=5000000)
            {
                f[xsk]+=i;//f函数存储的是每个数所以因子的和
                xsk+=i;
            }
        }
    
        int sum=0;
        for(int i=1; i<=5000000; i++)
        {
            int A=i,B=f[i];
            if(B>A&&B<5000000&&f[B]==i)
            {
                xA[sum]=A;
                xB[sum]=B;
                sum++;
            }
        }
    
        int L,R;
        while(~scanf("%d%d",&L,&R))
        {
            int ans=0;
            for(int i=0; i<sum; i++)
            {
                if(xA[i]>=L&&xA[i]<=R&&xB[i]>=L&&xB[i]<=R) ans++;
            }
            printf("%d
    ",ans);
        }
        return 0;
    }
    
  • 相关阅读:
    根据snort规则写openvas nasl 攻击 脚本
    snort规则中tcp/udp端口的具体作用
    snort规则头解析
    正则匹配中的特殊案例
    snort 规则 byte_test 不同运算符命中条件
    Linux中tar命令的一些用法
    Thymeleaf传递url参数
    PO BO VO DTO POJO DAO DO 令人迷惑的Java概念
    linux中多个命令连接符— ; && || ()
    遇见了count(1)这种写法,什么意思?
  • 原文地址:https://www.cnblogs.com/nyist-xsk/p/7264826.html
Copyright © 2011-2022 走看看