免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12345
最近访问板块 发新帖
楼主: liuke432
打印 上一主题 下一主题

[C] 一道算法题,求最优解法? [复制链接]

论坛徽章:
0
41 [报告]
发表于 2008-04-25 08:39 |只看该作者

感谢hll ,这么难的规律都被你找到了,你参加公务员的行政职业能力考试一定得高分

import java.io.*;
import java.sql.*;
import java.math.BigInteger;
import java.math.*;

public class jie1
{
    public static void main(String[] args)
    {
    int c=400;
    int i=0;
    long t=System.currentTimeMillis();

    BigInteger a = new BigInteger("0");
    BigInteger b = new BigInteger("1");
    BigInteger d = new BigInteger("1");
    BigInteger ten =new BigInteger("10");
    while(d.compareTo(ten.pow(c))<0){i++;
    BigInteger temp =d.add(a.add(b)).multiply(new BigInteger("2"));
    BigInteger tempa = temp.subtract( b);
    BigInteger tempb = temp.subtract( a);
    BigInteger tempc = temp.add( d);
    a = tempa;
    b = tempb;
    d = tempc;
    System.out.println(i+":"+a.toString()+" "+b.toString()+" "+d.toString());
   }
   i=(int)(System.currentTimeMillis()-t);
   System.out.println("用时"+i+"毫秒");
    }
}

论坛徽章:
0
42 [报告]
发表于 2008-04-26 08:37 |只看该作者
我还没编译成Release的。n == 2000,用时不到1毫秒。
浮点在判断相等的时候,肯定会有问题的。

#include <time.h>
#include <stdio.h>

int main(int argc, char* argv[])
{
&nbsp;&nbsp;&nbsp;&nbsp;int a;
&nbsp;&nbsp;&nbsp;&nbsp;int n = 2000;
&nbsp;&nbsp;&nbsp;&nbsp;int cnt = 0;
&nbsp;&nbsp;&nbsp;&nbsp;int r [2000];
&nbsp;&nbsp;&nbsp;&nbsp;int i;

&nbsp;&nbsp;&nbsp;&nbsp;int AMax = n - 2;
&nbsp;&nbsp;&nbsp;&nbsp;int CxCMax = (n - 1) * (n - 1);

&nbsp;&nbsp;&nbsp;&nbsp;clock_t begin, end;


&nbsp;&nbsp;&nbsp;&nbsp;begin = clock();
&nbsp;&nbsp;&nbsp;&nbsp;for (a = 2; a <= AMax; a ++)
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (a * a + (a + 1) * (a + 1) <= CxCMax)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;r[cnt ++] = a;
&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;end = clock();

&nbsp;&nbsp;&nbsp;&nbsp;for (i = 0; i < cnt; i++)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("%d^2 + %d^2 = %d\n", r[i], r[i] + 1, r[i] * r[i]);

&nbsp;&nbsp;&nbsp;&nbsp;printf(" -> time %ld, total %d\n", end - begin, cnt);

&nbsp;&nbsp;&nbsp;&nbsp;return 0;
}


1387^2 + 1388^2 = 1923769
1388^2 + 1389^2 = 1926544
1389^2 + 1390^2 = 1929321
1390^2 + 1391^2 = 1932100
1391^2 + 1392^2 = 1934881
1392^2 + 1393^2 = 1937664
1393^2 + 1394^2 = 1940449
1394^2 + 1395^2 = 1943236
1395^2 + 1396^2 = 1946025
1396^2 + 1397^2 = 1948816
1397^2 + 1398^2 = 1951609
1398^2 + 1399^2 = 1954404
1399^2 + 1400^2 = 1957201
1400^2 + 1401^2 = 1960000
1401^2 + 1402^2 = 1962801
1402^2 + 1403^2 = 1965604
1403^2 + 1404^2 = 1968409
1404^2 + 1405^2 = 1971216
1405^2 + 1406^2 = 1974025
1406^2 + 1407^2 = 1976836
1407^2 + 1408^2 = 1979649
1408^2 + 1409^2 = 1982464
1409^2 + 1410^2 = 1985281
1410^2 + 1411^2 = 1988100
1411^2 + 1412^2 = 1990921
1412^2 + 1413^2 = 1993744
1413^2 + 1414^2 = 1996569
-> time 0, total 1412

论坛徽章:
0
43 [报告]
发表于 2008-04-28 10:20 |只看该作者
原帖由 yuanchengjun 于 2008-4-26 08:37 发表
我还没编译成Release的。n == 2000,用时不到1毫秒。
浮点在判断相等的时候,肯定会有问题的。

#include
#include

int main(int argc, char* argv[])
{
&nbsp;&nbsp;&nbsp;&nbsp;int a;
&nbsp;&nb ...

貌似写的不对
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP