两种用c语言解决亲密数问题的方法并比较程序运行时间

来源:互联网 发布:如何重新设置网络连接 编辑:程序博客网 时间:2024/06/05 07:12

Problem K

亲密数(close numbers)

时限:2000ms 内存限制:10000K 总时限:2000ms

描述:

两个整数a和b,如果a的不包含自身的因子之和等于b,并且b的不包含自身的因子和等于a,且a不等于b,则称a,b为一对亲密数。
找出满足a<=10000且b<=10000的全部亲密数对。
A pair of close numbers(a and b) is defined as follows: the sum of a’s factors equals b and the sum of b’s factors equals a,but a does not equals b.Find all close numbers which are not greater than 10000.

输入:

本题无输入。
None

输出:

升序输出所有满足条件的数对,每对数字一行,小数字在前,大数字在后,用空格分隔。注意:本题要求程序效率要高,直接写成二重循环肯定超时。
Output all pair of close numbers in ascending order,and each pair occupies one line with the smaller one in front and the pair is separated by a space.

输入样例:

输出样例:

#include<stdio.h>#include<cmath>#include<math.h>#include<time.h>int f(int x ){//方法一: 一般方法    int i = 1;    int sum  =0 ;    for (;i <x ;i++){        if(x%i==0){            sum  = sum  + i;        }    }    return sum;}int f2(int x ){//方法二:利用根号节省程序运行时间    int i = 2;    int sum  =1 ;    for (;i <=sqrt(x) ;i++){// 范围与第九行写的范围不一样        if(x%i==0){            sum  = sum  + i; //如果这个数值是因子的话 那个数字除以这个因子也是这个数的因子            if(i != sqrt(x))                sum = sum  + x/i;        }    }    return sum;}int main(){    clock_t start = clock();    for(int i = 1 ; i < 10000  ;i++){        int xx = f(i);        if( i == f(xx) && i < xx)            printf("%d %d\n", i ,xx);    }    clock_t finish = clock();    printf("花费的时间是: %lf ms\n",(double)(finish - start)/CLOCKS_PER_SEC);    // cout<<"Time:"<<<<"ms"<<endl;//计算程序运行时间    start = clock();    for(int i = 1 ; i < 10000  ;i++){        int xx = f2(i);        if( i == f2(xx) && i < xx)            printf("%d %d\n", i ,xx);    }    finish = clock();    printf("花费的时间是: %lf ms\n",(double)(finish - start)/CLOCKS_PER_SEC);    return 0;}

原创粉丝点击