会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
追求挑战,超越自我
自信,自强,永不放弃
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
39
40
41
42
43
44
45
46
47
下一页
2012年4月13日
HDU 1879 继续畅通工程
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1879最小生成树。。。m,n又看反了。。。无语ingView Code #include #include #include int idx[1000000];struct node{ int a,b,cos...
阅读全文
posted @ 2012-04-13 13:09 LegendaryAC
阅读(141)
评论(0)
推荐(0)
编辑
HDU 1863 畅通工程
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1863裸的最小生成树,只需多判断一下是否连通,我用的方法是看是否只有一个根节点。ps:m和n写反了,害我查了1h啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊View Code #include #include #include...
阅读全文
posted @ 2012-04-13 10:12 LegendaryAC
阅读(204)
评论(0)
推荐(0)
编辑
HDU 1233 还是畅通工程
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1233最小生成树,查找根节点的函数里面等号写成赋值号,查了半个小时、、、View Code #include #include #define N 110int idx[N];struct node{ int...
阅读全文
posted @ 2012-04-13 09:06 LegendaryAC
阅读(139)
评论(0)
推荐(0)
编辑
2012年4月12日
HDU 1202 The calculation of GPA
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1202刚开始没看到输入实数。。。汗、、、View Code #include <stdio.h>int main(){ double s[100],p[100]; int n,i; double ss,sp; int cnt; while(~scanf("%d",&n)) { cnt=ss=sp=0; for(i=0;i<n;i++) { scanf("%lf%lf",s+i,p+i); ...
阅读全文
posted @ 2012-04-12 00:10 LegendaryAC
阅读(191)
评论(0)
推荐(0)
编辑
2012年4月11日
HDU 1248 寒冰王座
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1248我乱搞的,标准做法01背包View Code #include <stdio.h>int test(int n){ if(n<150)return n; if(n>200&&n<300)return n-200; return n%50;}int main(){ int t,n; scanf("%d",&t); while(t--) { scanf("%d",&n); printf("%d\n
阅读全文
posted @ 2012-04-11 23:49 LegendaryAC
阅读(190)
评论(0)
推荐(0)
编辑
HDU 1234 开门人和关门人
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1234和祖宗随机题号PK,由于这题first和end的初值赋反了,导致调试10分钟,最后以惨败收场。。。View Code #include <stdio.h>#include <string.h>#define INF 100000000int main(){ int t,n,i; int hb,mb,sb; int he,me,se; int first,end; char name[2][200],namec[200]; scanf("%d",&t);
阅读全文
posted @ 2012-04-11 22:29 LegendaryAC
阅读(358)
评论(0)
推荐(0)
编辑
HDU 1181 变形课
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1181直接bfs,等号写成赋值了,wa两次。。。View Code #include <stdio.h>#include <string.h>char s[200];char graph[50][50];char vis[50];int q[50];int bfs(){ int front=0,rear=1; int ch,i; q[0]=1; while(front<rear) { ch=q[front++]; if(ch=='m'-'a')re
阅读全文
posted @ 2012-04-11 13:04 LegendaryAC
阅读(206)
评论(0)
推荐(0)
编辑
HDU 2116 Has the sum exceeded
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2116判断两个k位带符号数的和有木有溢出。判断的时候注意不能用两个数的和判断,否则溢出的话会有bug。这里的方法是用最值减其中一个数,再和另一个数比较。View Code #include <stdio.h>int k;__int64 a,b;__int64 pow(int x,int y){ int i; __int64 s=1; for(i=0;i<y;i++) s*=x; return s;}#define MAX pow(2,63) int test(){ ...
阅读全文
posted @ 2012-04-11 12:33 LegendaryAC
阅读(249)
评论(0)
推荐(0)
编辑
HDU 1283 最简单的计算机
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1283模拟View Code #include <stdio.h>int main() { int m1,m2,r1,r2,r3,i; char s[300]; while(~scanf("%d%d",&m1,&m2)) { scanf("%s",s); r1=r2=r3=0; for(i=0;s[i];i++) { switch(s[i]) { ...
阅读全文
posted @ 2012-04-11 00:23 LegendaryAC
阅读(213)
评论(0)
推荐(0)
编辑
2012年4月10日
HDU 2552 三足鼎立
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2552数学推导View Code #include <stdio.h>#include <string.h>#include <stdlib.h>#include <math.h>int main(){ int t; scanf("%d",&t); while(t--) { scanf("%*lf%*lf"); printf("1\n"); } return 0;}
阅读全文
posted @ 2012-04-10 17:31 LegendaryAC
阅读(173)
评论(0)
推荐(0)
编辑
上一页
1
···
39
40
41
42
43
44
45
46
47
下一页
公告