免费注册 查看新帖 |

Chinaunix

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

据说是google的面试题,看谁的快 [复制链接]

论坛徽章:
0
21 [报告]
发表于 2006-03-29 17:08 |只看该作者
原帖由 flw 于 2006-3-29 17:04 发表
还有个问题,什么叫做“下一个最大的”?
难道这个是有最大值的?

有最大值的啊
我给的结果就是全集

论坛徽章:
0
22 [报告]
发表于 2006-03-29 17:12 |只看该作者
原帖由 yzc2002 于 2006-3-29 17:08 发表

有最大值的啊
我给的结果就是全集

只是部分数据的全集
呵呵

论坛徽章:
0
23 [报告]
发表于 2006-03-29 17:13 |只看该作者
原帖由 b46 于 2006-3-29 17:12 发表

只是部分数据的全集
呵呵

什么意思?
就是说除了我列出的数外,不可能有别的解了,所以叫全集

论坛徽章:
0
24 [报告]
发表于 2006-03-29 17:16 |只看该作者
原帖由 yzc2002 于 2006-3-29 17:13 发表

什么意思?
就是说除了我列出的数外,不可能有别的解了,所以叫全集

你证明过了?

论坛徽章:
0
25 [报告]
发表于 2006-03-29 17:18 |只看该作者
最笨的办法,
PS: 运行环境为在windows xp下 vs2005 cl.exe compiler,默认编译/优化选项 release binary
amd sempron2800 + 512M, HP笔记本
findallone(100)时,没算出,等了2分钟,cpu100% 


  1. #include "stdafx.h"
  2. #include "windows.h"


  3. int findone(long t)
  4. {
  5.         int theunit = 0;
  6.         int count = 0;
  7.         while(t>0)
  8.         {
  9.                 theunit = t%10;
  10.                 if(theunit == 1)
  11.                         count++;
  12.                 t = t/10;
  13.         }
  14.         return count;
  15. }

  16. void findallone(int count)
  17. {
  18.         DWORD time = 0;
  19.         long n =13;
  20.         long sumofone=6;
  21.         int i = 0;
  22.         for( ; i<count; i++)
  23.         {
  24.                 time = GetTickCount();
  25.                 while(n != sumofone)
  26.                 {
  27.                         n++;
  28.                         sumofone += findone(n);
  29.                 }
  30.                 time = GetTickCount()-time;
  31.                 printf("%3d: need time:%5d; the value:%d\n",i+1,time, n);
  32.                 n++;
  33.                 sumofone += findone(n);
  34.         }
  35.         return ;
  36. }

  37. int _tmain(int argc, _TCHAR* argv[])
  38. {
  39.        
  40.         findallone(40);               
  41.         return 0;
  42. }
复制代码


结果:
1: need time:    0; the value:199981
2: need time:    0; the value:199982
3: need time:    0; the value:199983
4: need time:    0; the value:199984
5: need time:    0; the value:199985
6: need time:    0; the value:199986
7: need time:    0; the value:199987
8: need time:    0; the value:199988
9: need time:    0; the value:199989
10: need time:    0; the value:199990
11: need time:    0; the value:200000
12: need time:    0; the value:200001
13: need time:   62; the value:1599981
14: need time:    0; the value:1599982
15: need time:    0; the value:1599983
16: need time:    0; the value:1599984
17: need time:    0; the value:1599985
18: need time:    0; the value:1599986
19: need time:    0; the value:1599987
20: need time:    0; the value:1599988
21: need time:    0; the value:1599989
22: need time:    0; the value:1599990
23: need time:   78; the value:2600000
24: need time:    0; the value:2600001
25: need time: 1172; the value:13199998
26: need time: 2469; the value:35000000
27: need time:    0; the value:35000001
28: need time:   31; the value:35199981
29: need time:    0; the value:35199982
30: need time:    0; the value:35199983
31: need time:    0; the value:35199984
32: need time:    0; the value:35199985
33: need time:    0; the value:35199986
34: need time:    0; the value:35199987
35: need time:    0; the value:35199988
36: need time:    0; the value:35199989
37: need time:    0; the value:35199990
38: need time:    0; the value:35200000
39: need time:    0; the value:35200001
40: need time: 9750; the value:117463825

论坛徽章:
0
26 [报告]
发表于 2006-03-29 17:22 |只看该作者
原帖由 b46 于 2006-3-29 17:16 发表

你证明过了?

是的,有兴趣的话我贴上来吧
说实话,打这个东西可不容易啊~~

count1.JPG (100.74 KB, 下载次数: 113)

count1.JPG

论坛徽章:
0
27 [报告]
发表于 2006-03-29 17:23 |只看该作者
原帖由 yzc2002 于 2006-3-29 17:22 发表

是的,有兴趣的话我贴上来吧
说实话,打这个东西可不容易啊~~

呵呵
没想到这样把答案骗到了,意外
不管怎么样,拿回家研究研究
多谢了

论坛徽章:
0
28 [报告]
发表于 2006-03-29 17:24 |只看该作者
如果能看懂上面的证明,那下面的这个程序就很自然了
  1. long long f(long long n)
  2. {
  3.     int k;
  4.     long long e, m = n, r;
  5.     if(n <= 1) return n;
  6.     for(k=0, e=1; m >= 10; k++, e *= 10) m /= 10;
  7.     r = n - m*e;
  8.     if(m == 1)
  9.         return(e/10*k+r+1+f(r));
  10.     else
  11.         return(e/10*k*m+e+f(r));
  12. }

  13. int digit_num(long long n)
  14. {
  15.     int k;
  16.     for(k=0; n > 0; k++) n /= 10;
  17.     return k;
  18. }

  19. int main()
  20. {
  21.     int k;
  22.     long long n, v;
  23.     for(n = 1; n<10000000000;)
  24.     {
  25.         v = f(n);
  26.         if(v == n) {
  27.             printf("%lld\n", n);
  28.             n++;
  29.         }
  30.         else if(v > n) n = v;
  31.         else {
  32.             k = digit_num(n + n - v);
  33.             n += (n-v)/k + 1;
  34.         }
  35.     }
  36. }
复制代码

[ 本帖最后由 yzc2002 于 2006-4-3 12:49 编辑 ]

评分

参与人数 1可用积分 +5 收起 理由
converse + 5 大哥,我给你加分哈 ..

查看全部评分

论坛徽章:
0
29 [报告]
发表于 2006-03-29 17:24 |只看该作者
原帖由 b46 于 2006-3-29 17:23 发表

呵呵
没想到这样把答案骗到了,意外
不管怎么样,拿回家研究研究
多谢了

:em12::em12::em12:

论坛徽章:
0
30 [报告]
发表于 2006-03-29 17:30 |只看该作者
原帖由 yzc2002 于 2006-3-29 17:24 发表

:em12::em12::em12:

智者千虑,必有一失
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP