ACM
O_M_God
我会好好学习!!
展开
-
2504 又见GCD(gcd)
http://acm.hdu.edu.cn/showproblem.php?pid=2504 a = kb; c = nb; n!=1; k%n!=0 因为 当k%n==0时,最大公约数就不是b,而是 k/n×b #include int gcd(int a,int b) { int r =1; while(r=a%b) { a=原创 2014-07-01 18:25:13 · 358 阅读 · 0 评论 -
1427 速算24点(暴搜)
http://acm.hdu.edu.cn/showproblem.php?pid=1427 http://blog.csdn.net/xingyeyongheng/article/details/11137631原创 2014-07-01 18:27:23 · 576 阅读 · 0 评论 -
1425 sort (hash)
http://acm.hdu.edu.cn/showproblem.php?pid=1425 超时 #include #include #include using namespace std; int num[1000001]; int cmp(int a,int b) { return a>b; } int main()原创 2014-07-01 18:26:27 · 224 阅读 · 0 评论 -
1028 Flip and Shift(规律)
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=28 #include int main() { int ji; int ou; int N; scanf("%d",&N); while(N--) { int k=0; int n; scanf("%d",&n); int i; int f; for(i=0;i<n;i++)原创 2014-07-01 18:32:54 · 308 阅读 · 0 评论 -
1518 square (DFS)
http://acm.hdu.edu.cn/showproblem.php?pid=1518 DFS 枝剪 1.数量大于等于4 2.平均长度即正方形长度大于或等于最长的 3.数量被4整除 #include #include #include using namespace std; int cmp(int a,int b){ return a>b原创 2014-07-01 18:23:31 · 311 阅读 · 0 评论 -
1361 Parencodings(模拟)可优化
http://acm.hdu.edu.cn/showproblem.php?pid=1361 设想可由p->w 好像挺繁琐,,,逻辑混乱 现 p->s->w 模拟原创 2014-07-01 18:31:24 · 221 阅读 · 0 评论