博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1215 七夕节
阅读量:5111 次
发布时间:2019-06-13

本文共 1497 字,大约阅读时间需要 4 分钟。

  • 题目链接:
  • 题目分析:RT,找出一个数的所有因子的和,水题
  • 我的思路:第一眼,数据比较小,那直接遍历吧,应该不会超时。。。
    但是评测姬就给我一个TLE让我去思考人生了… Orz
  • TLE 代码:
#include
#include
int main(void){ int T, N, i, sum; scanf("%d", &T); while (T-- > 0) { scanf("%d", &N); sum = 0; for (i = 1; i <= sqrt(N); i++) { if (N%i == 0) { sum += i; if (i != 1 && i != N / i) sum += N / i; } } printf("%d\n", sum); }}

这都TLE了,不应该啊,难道是sqrt()的time complex的问题?

然后找了找sqrt()的源码,最后在stackoverflow上知道自己错在哪里了。。。。

  • (可能需要FQ);
  • 有一个回答是这样的:
    The problem is that the whole expression i < sqrt(number) must be evaluated repeatedly in the original code, while sqrt is evaluated only once in the modified code.
    Well, the recent compilers are usually able to optimize the loop so the sqrt is evaluated only once before the loop, but do you want to rely on them ?
  • 原因:be evaluated repeatedly, 重复计算,每次都需要进行计算sqrt(N), 所以超时了,按照这个修改代码,就AC了。
  • AC代码:
#include
#include
int main(void){ int T, N, i, sum; scanf("%d", &T); while (T-- > 0) { scanf("%d", &N); sum = 0; int length = sqrt(N); for (i = 1; i <= length; i++) { if (N%i == 0) { sum += i; if (i != 1 && i != N / i) sum += N / i; } } printf("%d\n", sum); }}

转载于:https://www.cnblogs.com/FlyerBird/p/9052559.html

你可能感兴趣的文章
LeetCode(3) || Median of Two Sorted Arrays
查看>>
大话文本检测经典模型:EAST
查看>>
待整理
查看>>
一次动态sql查询订单数据的设计
查看>>
C# 类(10) 抽象类.
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
jvm参数
查看>>
我对前端MVC的理解
查看>>
Silverlight实用窍门系列:19.Silverlight调用webservice上传多个文件【附带源码实例】...
查看>>
2016.3.31考试心得
查看>>
mmap和MappedByteBuffer
查看>>
Linux的基本操作
查看>>
转-求解最大连续子数组的算法
查看>>
对数器的使用
查看>>
【ASP.NET】演绎GridView基本操作事件
查看>>
ubuntu无法解析主机错误与解决的方法
查看>>
尚学堂Java面试题整理
查看>>
MySQL表的四种分区类型
查看>>
[BZOJ 3489] A simple rmq problem 【可持久化树套树】
查看>>
STM32单片机使用注意事项
查看>>