
OJ
文章平均质量分 66
sjf0115
Stay Hungry, Stay Foolish---我们必须用谦虚者的自觉,饥饿者的渴望的求职态度,来拥抱我们的未来。
展开
-
一种排序
/*日期:2011-10-14 作者:xiaosi 题目:一种排序*/#include#include#includeusing namespace std;struct Rectangle{ int num; int a; int b; int l; int w;}R[1000];int cmp( const void *a ,原创 2011-10-22 07:37:41 · 838 阅读 · 0 评论 -
UVA 题目10361 - Automatic Poetry
Problem IAutomatic PoetryInput: standard inputOutput: standard outputTime Limit: 2 secondsMemory Limit: 32 MB “Oh God”, Lara Croft exclaims, “it’s one of these dumb riddles again!”原创 2013-04-26 14:40:27 · 2362 阅读 · 0 评论 -
杭电1058
/********************************* * 日期:2011-3-10 * 作者:SJF * 题号:杭电1058 * 题目:Humble Numbers * 结果:AC * 题意: * 总结:DP问题**********************************/#include #define N 5原创 2011-11-14 13:47:05 · 1826 阅读 · 2 评论 -
UVA 题目10010 - Where's Waldorf?
Where's Waldorf? Given a m by n grid of letters, ( ), and a list of words, find the location in the grid at which the word can be found. A word matches a straight, uninterrupted line o原创 2013-04-23 09:59:45 · 3683 阅读 · 0 评论 -
UVA 题目401 - Palindromes
A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when the string is read from lef原创 2013-04-22 15:18:30 · 4702 阅读 · 0 评论 -
题目1873: 看病要排队
Problem Description看病要排队这个是地球人都知道的常识。不过经过细心的0068的观察,他发现了医院里排队还是有讲究的。0068所去的医院有三个医生(汗,这么少)同时看病。而看病的人病情有轻重,所以不能根据简单的先来先服务的原则。所以医院对每种病情规定了10种不同的优先级。级别为10的优先权最高,级别为1的优先权最低。医生在看病时,则会在他的队伍里面选择一个优先权最高的原创 2013-03-16 09:19:55 · 4743 阅读 · 2 评论 -
题目1100: 简单计算器
题目描述读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值。 输入测试输入包含若干测试用例,每个测试用例占一行,每行不超过200个字符,整数和运算符之间用一个空格分隔。没有非法表达式。当一行中只有0时输入结束,相应的结果不要输出。 输出对每个测试用例输出1行,即该表达式的值,精确到小数点后2位。原创 2013-03-15 10:19:59 · 2303 阅读 · 0 评论 -
题目1016: Prime Ring Problem
Problem DescriptionA ring is compose of n circles as shown in diagram. Put natural number 1, 2, ..., n into each circle separately, and the sum of numbers in two adjacent circles should be a prime.原创 2013-03-14 09:29:16 · 4243 阅读 · 0 评论 -
杭电1005 Number Sequence
/******************************** * 日期:2011-1-21 * 作者:SJF * 题号:杭电1005 * 题目:Number Sequence * 结果:AC * 思考:这道题具有规律性; * f(1)=a[1]=f(49)=a[49]; * f(2)=a[2]=f(50)=a原创 2013-01-13 10:48:55 · 4037 阅读 · 1 评论 -
杭电1002 A + B Problem II
/******************************** * 日期:2011-1-19 * 作者:sjf0115 * 题号:杭电1002 * 题目:A + B Problem II * 结果:AC ********************************/#include#includeint main(){ char a1[原创 2013-01-13 10:40:38 · 3333 阅读 · 0 评论 -
杭电1170 Balloon Comes
/********************************* * 日期:2011-2-16 * 作者:SJF * 题号:杭电1170 * 题目:Balloon Comes! * 结果:AC * 注意: 1.对于乘法时,可能会出现诸如: 9999*9999的。结果必然大于int的存储范围,所以用 double 64(a*原创 2011-12-01 13:09:36 · 2441 阅读 · 0 评论 -
杭电1003 Max Sum
/******************************** * 日期:2011-1-20 * 作者:SJF * 题号:杭电1003 * 题目:Max Sum * 结果:AC ********************************/#include using namespace std; int main() {原创 2013-01-13 10:49:46 · 1914 阅读 · 0 评论 -
杭电1163 Eddy's digital Roots
/********************************* * 日期:2011-3-12 * 作者:SJF * 题号:杭电1163 * 题目:Eddy's digital Roots * 结果:AC * 题意: * 总结:先考虑两位数ab*ab=(a*10+b)*(a*10+b)=a*a*100+2*a*b*10+b*原创 2011-12-01 13:08:28 · 1578 阅读 · 0 评论 -
杭电1062
/********************************* * 日期:2011-3-5 * 作者:SJF * 题号:杭电1062 * 题目:Text Reverse * 结果:AC * 总结: **********************************/#include #include int m原创 2011-11-14 13:48:39 · 1667 阅读 · 0 评论 -
杭电1061
/********************************* * 日期:2011-2-16 * 作者:SJF * 题号:杭电1061 * 题目:Rightmost Digit * 结果:AC **********************************/#includeint main(){ long int原创 2011-11-14 13:47:35 · 1081 阅读 · 0 评论 -
杭电 1231 最大连续子序列
#include #include int k,num[10024],add[10024],pri[10024],pos; void cal( ) { int m = 0; for( int i = 1; i <= k; ++i ) { if( (add[i-1] + num[i]) > 0 && add[i-1] > 0 )原创 2011-12-03 09:51:01 · 1181 阅读 · 0 评论 -
UVA 题目11292 Dragon of Loowater
Problem C: The Dragon of LoowaterOnce upon a time, in the Kingdom of Loowater, a minor nuisance turned into a major problem.The shores of Rellau Creek in central Loowater had always been a prime b原创 2013-04-19 09:03:57 · 2621 阅读 · 0 评论 -
UVA 537 Artificial Intelligence?
Artificial Intelligence? Physics teachers in high school often think that problems given as text are more demanding than pure computations. After all, the pupils have to read and understan原创 2013-04-28 19:39:43 · 3358 阅读 · 0 评论 -
UVA 题目11729 - Commando War
There is a war and it doesn't look very promising for your country. Now it's time to act. You have a commando squad at your disposal and planning an ambush on an important enemy camp located nearby. Y原创 2013-04-20 08:07:09 · 2830 阅读 · 0 评论 -
独木舟上的旅行(贪心)
/*日期:2011-10-22 作者: 题目: 独木舟上的旅行(贪心)*/ #include#includeusing namespace std;int main(){ int v; cin>>v; while(v--) { int w,n,*p,t; cin>>w>>n; p=new int[转载 2011-10-22 19:38:28 · 983 阅读 · 0 评论 -
题目23: 取石子(一)
描述一天,TT在寝室闲着无聊,和同寝的人玩起了取石子游戏,而由于条件有限,他/她们是用旺仔小馒头当作石子。游戏的规则是这样的。设有一堆石子,数量为N(1<=N<=1000000),两个人轮番取出其中的若干个,每次最多取M个(1<=M<=1000000),最先把石子取完者胜利。我们知道,TT和他/她的室友都十分的聪明,那么如果是TT先取,他/她会取得游戏的胜利么?输入第一行是原创 2013-03-25 22:12:03 · 3381 阅读 · 0 评论 -
独木舟上的旅行(贪心)
/*日期:2011-10-22 作者:xiaosi 题目: 独木舟上的旅行(贪心)*/#include#include#includeusing namespace std;int weight[301];int cmp(const void *a,const void *b){ return *(int *)b-*(int *)a;}int main(){原创 2011-10-22 14:26:29 · 1040 阅读 · 0 评论 -
ASCII码排序
/*日期:2011-10-10 作者:xiaosi 题目:ASCII码排序*/#include#includeint cmp(const void *a,const void *b){ return *(char *)a-*(char *)b;}int main(){ int n; while(scanf("%d",&n)!原创 2011-10-22 07:32:04 · 914 阅读 · 0 评论 -
题目26: 孪生素数问题
孪生素数问题时间限制:3000 ms | 内存限制:65535 KB难度:3描述写一个程序,找出给出素数范围内的所有孪生素数的组数。一般来说,孪生素数就是指两个素数距离为2,近的不能再近的相邻素数。有些童鞋一看到题就开始写程序,不仔细看题,咱们为了遏制一下读题不认真仔细的童鞋,规定,两个素数相邻为1的也成为孪生素数。输入第一行给出N(0接下来组测试数据给原创 2013-03-14 10:12:32 · 5067 阅读 · 1 评论 -
题目22: 素数求和问题
描述现在给你N个数(0<N<1000),现在要求你写出一个程序,找出这N个数中的所有素数,并求和。输入第一行给出整数M(0每组测试数据第一行给你N,代表该组测试数据的数量。接下来的N个数为要测试的数据,每个数小于1000输出每组测试数据结果占一行,输出给出的测试数据的所有素数和样例输入351 2 3 4 5811 12 13 14 15 16 1原创 2013-03-25 21:52:49 · 5036 阅读 · 0 评论 -
题目17: 单调递增最长子序列
单调递增最长子序列时间限制:3000 ms | 内存限制:65535 KB难度:4描述求一个字符串的最长递增子序列的长度如:dabdbf最长递增子序列就是abdf,长度为4输入第一行一个整数0随后的n行,每行有一个字符串,该字符串的长度不会超过10000输出输出字符串的最长递增子序列的长度样例输入3aaaababcabklm原创 2013-03-25 22:25:46 · 5195 阅读 · 0 评论 -
题目24: 素数距离问题
描述现在给出你一些数,要求你写出一个程序,输出这些整数相邻最近的素数,并输出其相距长度。如果左右有等距离长度素数,则输出左侧的值及相应距离。如果输入的整数本身就是素数,则输出该素数本身,距离输出0输入第一行给出测试数据组数N(0接下来的N行每行有一个整数M(0输出每行输出两个整数 A B.其中A表示离相应测试数据最近的素数,B表示其间的距离。样例输入原创 2013-03-26 08:11:18 · 4448 阅读 · 1 评论 -
题目40: 公约数和公倍数
描述小明被一个问题给难住了,现在需要你帮帮忙。问题是:给出两个正整数,求出它们的最大公约数和最小公倍数。输入第一行输入一个整数n(0随后的n行输入两个整数i,j(0输出输出每组测试数据的最大公约数和最小公倍数样例输入36 612 1133 22样例输出6 61 13211 66来源/**************原创 2013-03-26 08:24:33 · 2182 阅读 · 0 评论 -
题目20: 吝啬的国度
吝啬的国度时间限制:1000 ms | 内存限制:65535 KB难度:3描述在一个吝啬的国度里有N个城市,这N个城市间只有N-1条路把这个N个城市连接起来。现在,Tom在第S号城市,他有张该国地图,他想知道如果自己要去参观第T号城市,必须经过的前一个城市是几号城市(假设你不走重复的路)。输入第一行输入一个整数M表示测试数据共有M(1每组测试数据原创 2013-03-26 09:59:30 · 2575 阅读 · 1 评论 -
题目16: 矩形嵌套
矩形嵌套时间限制:3000 ms | 内存限制:65535 KB难度:4描述有n个矩形,每个矩形可以用a,b来描述,表示长和宽。矩形X(a,b)可以嵌套在矩形Y(c,d)中当且仅当a<c,b<d或者b<c,a<d(相当于旋转X90度)。例如(1,5)可以嵌套在(6,2)内,但不能嵌套在(3,4)中。你的任务是选出尽可能多的矩形排成一行,使得除最后一个外,每一个矩原创 2013-03-26 11:39:52 · 1950 阅读 · 0 评论 -
UVA 题目难度分级列表
#IDTitleSolved byDifficulty1100The 3n + 1 problem2648512102Ecological Bin Packing106082310071Back to High School Physics95543410055Hashmat t转载 2013-05-03 10:17:30 · 104937 阅读 · 0 评论 -
UVA 10878 - Decode the tape
Your boss has just unearthed a roll of old computer tapes. The tapes have holes in them and might contain some sort of useful information. It falls to you to figure out what is written on them.Input原创 2013-05-03 09:05:17 · 4001 阅读 · 5 评论 -
UVA 题目409 - Excuses, Excuses!
Excuses, Excuses! Judge Ito is having a problem with people subpoenaed for jury duty giving rather lame excuses in order to avoid serving. In order to reduce the amount of time required原创 2013-04-29 14:13:22 · 3494 阅读 · 1 评论 -
UVA 题目11300 - Spreading the Wealth
ProblemA Communist regime is trying to redistribute wealth in a village. They have have decided to sit everyone around a circular table. First, everyone has converted all of their properties to coin原创 2013-04-21 19:45:32 · 3737 阅读 · 0 评论 -
HDOJ 1160 FatMouse's Speed
#include #include typedef struct s_mouse{ int id; int weight; int speed;}s_mouse;static s_mouse mice[1000];static int m[1000];static int s[1000];//static int p[1000];static int num;int转载 2011-12-03 09:52:53 · 749 阅读 · 0 评论 -
杭电1162 Eddy's picture
/********************************* * 日期:2011-3-8 * 作者:SJF * 题号:杭电1162 * 题目:Eddy's picture * 结果:AC * 总结:**********************************/#include #include #inclu原创 2011-11-17 15:08:52 · 1030 阅读 · 0 评论 -
杭电1065 I Think I Need a Houseboat
/********************************* * 日期:2011-3-7 * 作者:SJF * 题号:杭电1065 * 题目:I Think I Need a Houseboat * 结果:AC * 总结: **********************************/#include#de原创 2011-11-14 13:49:11 · 996 阅读 · 0 评论 -
杭电1071 The area
/********************************* * 日期:2011-2-16 * 作者:SJF * 题号:杭电1071 * 题目:The area * 结果:AC * 注意: 已知抛物线与直线相交两点和抛物线顶点,顶点P1(-b/(2a), (4ac-b^2)/4a)。 抛物线方程原创 2011-11-14 13:50:37 · 1514 阅读 · 0 评论 -
杭电1070 Milk
/********************************* * 日期:2011-3-11 * 作者:SJF * 题号:杭电1070 * 题目:Milk * 结果:AC * 题意: * 总结:**********************************/#include#includetypede原创 2011-11-14 13:49:54 · 1336 阅读 · 0 评论 -
杭电1061
/********************************* * 日期:2011-2-16 * 作者:(转载) * 题号:杭电1061 * 题目:Rightmost Digit * 结果:AC * 思路: 1的n次方,各位依次为:1 1 1 1 1 1 1 1 ... 2的n次方,各位依次为原创 2011-11-14 13:48:10 · 1106 阅读 · 0 评论