水题
文章平均质量分 52
「已注销」
我的目标 离我还有多远我的梦想 有点遥不可及我要用十倍苦心做最突出一个我不能退缩 不管路多艰难 我都要努力我要靠自己的双手去做自己喜欢做的事我要靠自己的努力去我想去的地方旅游我还年轻 我还可以去奋斗
展开
-
求立方根
题目没多大意思,就是考虑问题不够,需要考虑为负数情况#include#include#includeusing namespace std;int main(){ double n; int Case; cin >> Case; while( Case-- ){ cin >> n; if( n >= 0 ) printf( "%.6lf\n", pow( n原创 2014-02-26 19:06:22 · 1276 阅读 · 0 评论 -
hdu1231-最大连续子序列
http://acm.hdu.edu.cn/showproblem.php?pid=1231dp入门题#include#include#include#include#include#include#includeusing namespace std;#define MAX 10005int main(){ int dp[ MAX ] ; int n ; w原创 2013-07-25 22:47:15 · 1008 阅读 · 0 评论 -
hdu1262-寻找素数对
http://acm.hdu.edu.cn/showproblem.php?pid=1262#include#include#include#include#include#include#includeusing namespace std;int judge( int n ){ for( int i = 2 ; i <= sqrt( n ) ; ++i )原创 2013-07-22 17:16:15 · 1181 阅读 · 0 评论 -
zoj1241-Geometry Made Simple
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=241格式问题#include#include#include#include#include#includeusing namespace std;int main(){ double a , b , c ; int Case = 0 ; whil原创 2013-07-18 09:58:21 · 1056 阅读 · 0 评论 -
hdu1013-Digital Roots
http://acm.hdu.edu.cn/showproblem.php?pid=1013题意:求各个数位的和,如果大于9,继续处理#include#include#include#include#include#include#includeusing namespace std;int main(){ char str[ 1005 ] ; int len ,原创 2013-07-17 17:57:51 · 917 阅读 · 0 评论 -
hdu1390-Binary Numbers
http://acm.hdu.edu.cn/showproblem.php?pid=1390题意:给定一个数n,求它的二进制数的1所处的位置;#include#include#include#include#include#includeusing namespace std;int main(){ int i , j , n; int Case , num[原创 2013-07-16 22:11:22 · 983 阅读 · 0 评论 -
hdu1337-The Drunk Jailer
http://acm.hdu.edu.cn/showproblem.php?pid=1337#include#include#include#include#include#includeusing namespace std;int main(){ int Case ; int t ; cin >> Case ; while( Case-- ) { ci原创 2013-07-16 20:59:36 · 997 阅读 · 0 评论 -
hdu1018-Big Number
http://acm.hdu.edu.cn/showproblem.php?pid=1018#include#include#include#include#include#includeusing namespace std;int main(){ int Case ; int n ; cin >> Case ; while( Case-- ) { ci原创 2013-07-17 07:56:17 · 925 阅读 · 0 评论 -
hdu1339-A Simple Task
http://acm.hdu.edu.cn/showproblem.php?pid=1339数学+暴力搜索#include#include#include#include#include#includeusing namespace std;int main(){ int i , j , n; int Case ; scanf( "%d" , &Case ) ;原创 2013-07-16 21:26:44 · 974 阅读 · 0 评论 -
hdu1056-HangOver
http://acm.hdu.edu.cn/showproblem.php?pid=1056#include#include#include#include#include#includeusing namespace std;int main(){ double sum , c ; int ans ; while( ~scanf( "%lf" , &c ) ) {原创 2013-07-16 10:25:43 · 968 阅读 · 0 评论 -
hdu1197-Specialized Four-Digit Numbers
http://acm.hdu.edu.cn/showproblem.php?pid=1197进制转换问题,题意为给定一个4位的十进制数,求它各个数位的和,然后问是否它的12进制和16进制的和都相等,输出2992~10000之间所有满足条件的数;第二种解法有点二。但是,偷懒时,总是pe#include#include#include#include#includeusing原创 2013-07-15 17:33:52 · 1025 阅读 · 0 评论 -
hdu1492-The number of divisors(约数) about Humble Numbers
http://acm.hdu.edu.cn/showproblem.php?pid=1492这道题目就是一道数学题,题意大致为问某个数是否为“谦虚数”,就是满足所有的因子都是由2 , 3 , 5 , 7 这四个质因子所组成的数据,然后问这个数有多少个因子;解法:就是将数据拆分,统计每个素因子的个数,然后直接相乘即可,至于为什么,自己看数论有关书籍。需要注意的就是最后直接取余统计的话,最原创 2013-07-15 10:10:32 · 1661 阅读 · 0 评论 -
均分纸牌
http://wikioi.com/problem/1098/贪心// File Name: wiki1098.cpp// Author: bo_jwolf// Created Time: 2013年08月17日 星期六 16时00分04秒#include#include#include#include#include#include#include#include原创 2013-08-17 16:23:06 · 977 阅读 · 0 评论 -
家族(并查集)
http://wikioi.com/problem/1073/典型并查集,只需要判断find( x ) 和find( y) 是否在一个集合里面即可// File Name: wiki1073.cpp// Author: bo_jwolf// Created Time: 2013年08月17日 星期六 16时36分22秒#include#include#include#inc原创 2013-08-17 16:45:00 · 1173 阅读 · 0 评论 -
Lotto
#include#include#includeusing namespace std;const int maxn = 1005;int num[ maxn ];int main(){ int n; while( cin >> n ){ if( !n ) break; for( int i = 0; i < n; ++i ){ cin >> num[ i原创 2014-01-28 23:52:22 · 1049 阅读 · 0 评论 -
flip
#include#include#include#includeusing namespace std;const int maxn = 105;int num1[ maxn ], num2[ maxn ];void Fun( int n, int a[], int &k ){ k = 0; while( n ){ a[ k++ ] = n % 2; n /= 2;原创 2013-11-24 20:54:34 · 1002 阅读 · 0 评论 -
Goldbach's Conjecture
http://poj.org/problem?id=2909题意:把n拆分成a+b(都为素数)解析:2^15不大。。。直接求;// File Name: poj2909.cpp// Author: bo_jwolf// Created Time: 2013年10月11日 星期五 18:50:50#include#include#include#include#inc原创 2013-10-11 19:04:01 · 963 阅读 · 0 评论 -
Prime Cuts
http://poj.org/problem?id=1595基础不过关,做了两个小时;// File Name: poj1595.cpp// Author: bo_jwolf// Created Time: 2013年10月11日 星期五 16:29:12#include#include#include#include#include#include#include原创 2013-10-11 18:25:51 · 1421 阅读 · 0 评论 -
Prime Gap
http://poj.org/problem?id=3518// File Name: poj3518.cpp// Author: bo_jwolf// Created Time: 2013年10月11日 星期五 15:46:48#include#include#include#include#include#include#include#include#incl原创 2013-10-11 16:16:45 · 1470 阅读 · 0 评论 -
A Funny Game
http://poj.org/problem?id=2484题意:给你n个相同的硬币围成一个圈,每次可以去一个硬币旁的一个或两个;问你谁最在最后都取完;题解:博弈的精髓,当n// File Name: poj2484.cpp// Author: bo_jwolf// Created Time: 2013年10月02日 星期三 21:14:41#include#includ原创 2013-10-02 21:20:03 · 1103 阅读 · 0 评论 -
Brave Game
http://acm.hdu.edu.cn/showproblem.php?pid=1846巴什博弈// File Name: hdu1846.cpp// Author: bo_jwolf// Created Time: 2013年10月01日 星期二 16:48:04#include#include#include#include#include#include#原创 2013-10-01 16:52:41 · 906 阅读 · 0 评论 -
kiki's game
http://acm.hdu.edu.cn/showproblem.php?pid=2147巴什博弈// File Name: hdu2147.cpp// Author: bo_jwolf// Created Time: 2013年10月01日 星期二 11:37:33#include#include#include#include#include#include#原创 2013-10-01 12:59:49 · 850 阅读 · 0 评论 -
hdu2111-Saving HDU
http://acm.hdu.edu.cn/showproblem.php?pid=2111贪心#include#include#include#include#include#include#include#include#include#include#include#include#include#include#include#include#inc原创 2013-09-07 15:02:59 · 636 阅读 · 0 评论 -
Codeforces Round #196 (Div. 2)
B. Routine Problemtime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputManao has a monitor. The screen of the mo原创 2013-08-17 10:10:20 · 961 阅读 · 0 评论 -
Codeforces Round #196 (Div. 2)
A. Puzzlestime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputThe end of the school year is near and Ms. Manana原创 2013-08-17 10:09:04 · 1015 阅读 · 0 评论 -
hdu1250-Hat's Fibonacci
http://acm.hdu.edu.cn/showproblem.php?pid=1250二维大数处理#include#include#include#includeusing namespace std ;#define maxm 10005#define maxn 305 int fi[ maxm ][ maxn ] ;void Add(){ memset(原创 2013-06-08 16:51:11 · 1112 阅读 · 0 评论 -
hdu1049-Climbing Worm
http://acm.hdu.edu.cn/showproblem.php?pid=1049#include#includeusing namespace std; int main(){ int high , up , down ; while( cin >> high >> up >> down ) { if( high == 0 && up == 0 && down原创 2013-06-06 22:34:24 · 950 阅读 · 0 评论 -
hdu1017-A Mathematical Curiosity
http://acm.hdu.edu.cn/showproblem.php?pid=1017代码格式及其恶心,记录一下#include#include#includeusing namespace std ;int main(){ int i , j , sum ,Case , n , m ; scanf( "%d" , &Case ) ; { //printf(原创 2013-05-30 19:48:25 · 907 阅读 · 0 评论 -
hdu1398-Square Coins
http://acm.hdu.edu.cn/showproblem.php?pid=1398#include#include#includeusing namespace std ;const int maxn = 305 ;int c1[ maxn ] , c2[ maxn ] ;int main(){ int n ; int i , j , k ; while(原创 2013-05-29 12:53:51 · 1168 阅读 · 0 评论 -
hdu1028-Ignatius and the Princess III
http://acm.hdu.edu.cn/showproblem.php?pid=1028#includeusing namespace std; const int _max = 121;//c1是保存各项质量砝码可以组合的数目//c2是中间量,保存没一次的情况int c1[_max], c2[_max]; int main(){ //int n,i,j,k;原创 2013-05-29 12:36:48 · 1607 阅读 · 0 评论 -
hdu4451-Dressing
http://acm.hdu.edu.cn/showproblem.php?pid=4451以下用了两种思路求解, 另外用了数组用set两种写法,3份代码,另外还有一种思路的数组方法没有写,感兴趣的朋友们可以尝试下;A; 使用两个数组,左侧存和裤子不匹配的情况,右边统计鞋子和裤子不匹配的情况,然后求解每项的 ( n - lw[ i ] ) * ( k -原创 2013-05-24 16:30:27 · 965 阅读 · 0 评论 -
hdu4450-Draw Something
http://acm.hdu.edu.cn/showproblem.php?pid=4450不多说// File Name: hdu4450.cpp// Author: bo_jwolf// Created Time: 2013年05月24日 星期五 14:33:25#include#include#include#include#include#include#i原创 2013-05-24 14:30:50 · 1142 阅读 · 0 评论 -
hdu2079-选课时间(题目已修改,注意读题)
http://acm.hdu.edu.cn/showproblem.php?pid=2079// File Name: hdu2079.cpp// Author: bo_jwolf// Created Time: 2013年05月23日 星期四 17:05:36#include#include#include#include#include#include#includ原创 2013-05-23 17:18:23 · 1272 阅读 · 0 评论 -
hdu2080夹角有多大II
http://acm.hdu.edu.cn/showproblem.php?pid=2080就是一道数学题目,然后调用了反三角函数,考虑四个坐标系的情况,考虑清楚即可#include "stdio.h"#include "string.h"#include "stdlib.h"#include "math.h"#include "algorithm"#include "ios原创 2013-05-23 12:19:54 · 1099 阅读 · 0 评论 -
hdu2076-夹角有多大(题目已修改,注意读题)
http://acm.hdu.edu.cn/showproblem.php?pid=2076按照不同单位转一圈,然后转换成某一个统一的单位换算即可#include "stdio.h"#include "string.h"#include "stdlib.h"#include "math.h"#include "algorithm"#include "iostream"usin原创 2013-05-22 21:47:24 · 1969 阅读 · 0 评论 -
hdu2087-剪花布条
http://acm.hdu.edu.cn/showproblem.php?pid=2087stl_strng#include#include#includeusing namespace std ;int main(){ int temp , sum ; string str1 , str2 ; while( cin >> str1 && str1 != "#" )原创 2013-05-22 19:57:27 · 1269 阅读 · 0 评论 -
hdu2098-分拆素数和
http://acm.hdu.edu.cn/showproblem.php?pid=2098网上另一种代码多的是,有兴趣的自己看看吧,这道题目明显想复杂了,数据不是很大,却用了打表;#include "stdio.h"#include "string.h"#include "stdlib.h"#include "math.h"#include "algorithm"#incl原创 2013-05-22 18:37:15 · 1589 阅读 · 2 评论 -
hdu2082-找单词
http://acm.hdu.edu.cn/showproblem.php?pid=2082背包问题,开个二位数组,第一维表示第几个字母数,第二维表示分数,然后统计计算出题目要求的小于50的即可;最后从1~50中的统计个数#include "stdio.h"#include "string.h"#include "stdlib.h"#include "math.h"#inc原创 2013-05-22 13:12:49 · 1454 阅读 · 0 评论 -
hdu1022-Train Problem I
http://acm.hdu.edu.cn/showproblem.php?pid=1022#include#include#include#includeusing namespace std;int main(){ int n ; int vis[ 1005 ] ; char a[ 1005 ] , b[ 1005 ] ; while( cin >> n >> a >原创 2013-05-30 20:25:18 · 887 阅读 · 0 评论 -
hdu1230-火星A+B
http://acm.hdu.edu.cn/showproblem.php?pid=1230#include#include#include#includeusing namespace std ;int prime[ 30 ] ;int num[ 30 ];void Prime(){ memset( num , 0 , sizeof( num ) ); int i原创 2013-06-08 20:10:09 · 867 阅读 · 0 评论