码迷,mamicode.com
首页 >  
搜索关键字:hdu 1075 what are yo    ( 36367个结果
[HDU 1166 敌兵布阵] 线段树 或 树状数组
1 #include 2 #include 3 #include 4 using namespace std; 5 int n,C[50005]; 6 //-------------------------- 7 int lowbit(int x){ 8 return x&-x; 9 }1...
分类:其他好文   时间:2014-07-22 23:12:33    阅读次数:311
javascript执行上下文
What is the Execution Context & Stack in JavaScript?In this post I will take an in-depth look at one of the most fundamental parts of JavaScript, theE...
分类:编程语言   时间:2014-07-22 23:12:16    阅读次数:608
HDU 1002
A + B Problem IITime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 199099Accepted Submission(s): 3809...
分类:其他好文   时间:2014-07-22 23:08:54    阅读次数:260
hdu 2050 折线分割平面 (递推)
折线分割平面Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 15709Accepted Submission(s): 10836Problem De...
分类:其他好文   时间:2014-04-30 21:37:40    阅读次数:516
hdu 1576
模线性方程的基本应用#includeusing namespace std;int exgcd(int a,int b,int &x,int &y){ if(b==0) { x=1; y=0; return a; } int d=ex...
分类:其他好文   时间:2014-04-30 14:33:27    阅读次数:326
hdu 2999 sg函数(简单博弈)
Stone Game, Why are you always there?Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 393Accepted S...
分类:其他好文   时间:2014-04-29 17:23:45    阅读次数:444
hdu 1195:Open the Lock(暴力BFS广搜)
Open the LockTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 3847Accepted Submission(s): 1661Probl...
分类:其他好文   时间:2014-04-29 16:35:47    阅读次数:450
Advice for Applying Machine Learning & Machine Learning System Design----- Stanford Machine Learning(by Andrew NG)Course Notes
AdviceforapplyingmachinelearningDeciding what to try next 现在我们已学习了线性回归、逻辑回归、神经网络等机器学习算法,接下来我们要做的是高效地利用这些算法去解决实际问题,尽量不要把时间浪费在没有多大意义的尝试上,Advice for appl...
分类:移动开发   时间:2014-04-29 12:11:47    阅读次数:756
hdu 1492
好高兴 一上午做了2个题 题意:求素因子只有2 3 5 7 数 约束的个数 我用的时搜索计数法 感觉还应该有比较不错的组合数学方法#includeusing namespace std;__int64 dmax;int prime[4];void dfs(int t){ if(t>=4) { ...
分类:其他好文   时间:2014-04-29 11:21:47    阅读次数:278
HDU-1081-To The Max
求最大连续子矩阵和问题可以转化为求最大连续子序列问题map[i][j]=map[0][j]+map[1][j]+...+map[i][j]即将第j 列前 i 行的值压缩到map[i][j]求第 x 行到第 y 行之间最大连续矩阵和,就将 x~y 行同列元素当成一个元素处理这样就将 x~y 行压缩成了...
分类:其他好文   时间:2014-04-29 11:13:45    阅读次数:318
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!