码迷,mamicode.com
首页 >  
搜索关键字:zoj 暴力    ( 12241个结果
ZOJ 3768Continuous Login(找规律然后二分)
Continuous Login Time Limit: 2 Seconds      Memory Limit: 131072 KB      Special Judge Pierre is recently obsessed with an online game. To encourage users to log in, this game will give user...
分类:其他好文   时间:2014-05-14 01:25:00    阅读次数:396
SPOJ 74. Divisor Summation 分解数字的因子
本题有两个难点: 1 大量的数据输入,没处理好就超时 - 这里使用buffer解决 2 因子分解的算法 a)暴力法超时 b)使用sieve(筛子),不过其中的算法逻辑也挺不容易搞对的。 数值N因子分解逻辑: 1 保存所有可以sqrt(N)范围内的质素 2 找到可以被N除尽的质素d, 然后用d去除N,使用deg变量,保存度,即有多少个d可以被N除尽 3 用d去乘所有已经找到的因子...
分类:其他好文   时间:2014-05-14 01:11:37    阅读次数:302
zoj Gao The Sequence
Gao The SequenceTime Limit:2 Seconds Memory Limit:65536 KBYou are given a sequence of integers,A1,A2,...,An. And you are allowed a manipulation on the...
分类:其他好文   时间:2014-05-13 19:49:14    阅读次数:277
临时代码。
zoj 3673 1 /** 2 6700417 3 **/ 4 #include 5 #include 6 #include 7 #include 8 #include 9 using namespace std;10 11 typedef unsigned long long LL;12 13 ...
分类:其他好文   时间:2014-05-13 18:07:32    阅读次数:234
ZOJ3673:1729
1729 is the natural number following 1728 and preceding 1730. It is also known as the Hardy-Ramanujan number after a famous anecdote of the British mathematician G. H. Hardy regarding a hospital vis...
分类:其他好文   时间:2014-05-13 14:52:34    阅读次数:314
zoj 3627(贪心)
思路:半夜了思路有点混乱wa了好几发。一开始坑定两个人距离为m才能获得最大的收益,所以我们就可以枚举单个端点,当距离达到m时在一同一个方向走这是我们只需要算一下剩下几秒,左右两边贪心去最大的即可。代码如下: 1 /*******************************************...
分类:其他好文   时间:2014-05-13 09:58:02    阅读次数:268
ZOJ 3772 Calculate the Function (线段树 + 矩阵)
思路分析: 遗憾不知道矩阵的构造。线段树上比较水的矩阵。。。  M[x]  =  [1 A[x]]               [1   0 ]   就有 [  F[R]  ]    =   M[R] * M[R-1] *  ... * M[L+2] * [F[L+1]] [F[R-1]]                                       ...
分类:其他好文   时间:2014-05-13 08:45:03    阅读次数:270
做一个WINDOWS下破解WIFI。不需要Linux抓包!
直接在WINDOWS下 暴力破解WIFI !...
分类:Windows程序   时间:2014-05-13 07:55:51    阅读次数:336
[迭代加深dfs] zoj 3768 Continuous Login
题目链接: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3768 Continuous Login Time Limit: 2 Seconds      Memory Limit: 131072 KB      Special Judge Pierre is recently obsessed...
分类:其他好文   时间:2014-05-13 07:28:07    阅读次数:412
HDU 4028 The time of a day STL 模拟题
暴力出奇迹。。 #include #include #include #include #include #include #include #include using namespace std; #define ll __int64 #define N 42 ll n,m,ans; ll Gcd(ll x,ll y){ if(x>y)swap(x,y); while(x){ y%=...
分类:其他好文   时间:2014-05-12 23:11:06    阅读次数:445
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!