上一页 1 ··· 9 10 11 12 13 14 15 下一页
摘要: #include#includeint main(){ char s[100001],t[100001]; char *p1,*p2; while(scanf("%s%s",s,t)!=EOF) { p1=s; p2=t; while... 阅读全文
posted @ 2015-05-25 21:48 Gabyler 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 题意:两条虫之间碰在一起,质量变为2*sqrt(m1*m2)求怎么结合,能使最后的一只虫质量最小分析:如果让按从大到小的顺序依次结合,可以使大的数被开方的次数最多,得到的结果更小4 3 2 13,4被开3次,2被开2次,1被开1次,只要按照公式来,一定有数分别被开3,3,2,1次,不过按照大的开更多... 阅读全文
posted @ 2015-05-25 13:55 Gabyler 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 题意:给定一个序列,求它的下k个排列#include #include int cmp(const void *a,const void *b){ return (*(int *)a-*(int *)b);}void getNext(int *arr,int n){ int i,j,fl... 阅读全文
posted @ 2015-05-24 23:33 Gabyler 阅读(790) 评论(0) 推荐(0) 编辑
摘要: sin(a)=r/R-r,反三角asin(r/R-r),乘以2n=2pi,去化简,得到r收获:define pi acos(-1) 这样pi的精度会高很多(cos,sin)让一个小数除以整数,得到的是小数Terminate the output for the scenario with a bla... 阅读全文
posted @ 2015-05-13 10:23 Gabyler 阅读(186) 评论(0) 推荐(0) 编辑
摘要: #include #include #define pi 3.1415926int main(){ float dia,tim; int rev,count=0; while(scanf("%f%d%f",&dia,&rev,&tim)!=EOF) { floa... 阅读全文
posted @ 2015-05-12 21:29 Gabyler 阅读(106) 评论(0) 推荐(0) 编辑
摘要: #include #include int main() { int n; scanf("%d",&n); while(n--) { int x,y; scanf("%d... 阅读全文
posted @ 2015-05-12 20:54 Gabyler 阅读(97) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(){ int n; scanf("%d",&n); while(n--) { int a,b,c,d; scanf("%d%d%d%d",&a,&b,&c,&d); if((b-a... 阅读全文
posted @ 2015-05-12 15:09 Gabyler 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 对棋盘横纵坐标的解读str1="f3"str2="e9"x=abs(str1[0]-str2[0])y=abs(str1[1]-str1[1])如果x==y,在一条斜线上如果x==0或者y==0,在同一横行,或者同一列注意:我们谈的是x个和y个单位,所以加绝对值解题思路:找规律:王:x和y中较大的那... 阅读全文
posted @ 2015-05-12 11:41 Gabyler 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 题意:有white,black,test操作black将给定范围涂黑,white将给定范围涂白,test将给定范围的黑格子数出来并且输出思路:无论哪个操作格子范围都在 (x,y) (x+L-1,y+L-1),行跨度:x到x+L-1,列跨度:y到y+L-1一个white操作,使用两个for循环对这一范... 阅读全文
posted @ 2015-05-11 19:15 Gabyler 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 题意:给出keyword,如BATBOY,A的ascii值最小,所以第二列最先输出,B有两个,左边的先输出,也就是说,接下来输出第一列和第4列,所以每一个字母都带有一个ascii值和一个序号,用结构组合起来#include #include #includestruct com{ int as... 阅读全文
posted @ 2015-05-11 16:40 Gabyler 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 下一页