自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(72)
  • 资源 (2)
  • 收藏
  • 关注

原创 UVa 10922 - 2 the 9s

题目:分析:说明:#include #include #include using namespace std;int main(){ string data; while ( cin >> data ) { if ( data.length() == 1 && data[0] == '0' ) break; int sum = 0,flag1 = 0,

2014-06-30 23:56:17 2374

原创 UVa 10302 - Summation of Polynomials

题目:求立方和(题目很长,不过看最后一句话就明白了)。分析:数学题。公式

2014-06-30 19:45:15 726

原创 UVa 913 - Joana and the Odd Numbers

题目:将奇数按照1,3,5的个数按顺序写成三角形

2014-06-30 02:12:05 2294

原创 UVa 253 - Cube painting

题目:有两个zhengfan分析:

2014-06-27 11:25:49 981

原创 UVa 10070 - Leap Year or Not Leap Year and ...

题目:判断一年是不是闰年,huluculu以及buluculu

2014-06-27 09:20:16 951

原创 UVa 10194 - Football (aka Soccer)

题目:给你一些球队的比赛记录,对球队的成绩jinxin

2014-06-27 02:24:42 907

原创 UVa 11192 - Group Reverse

题目:给你一个字符串,把它分成n段,分别f转

2014-06-26 22:36:13 1244

原创 UVa 107 - The Cat in the Hat

题目:有一只高度为h的猫,头上d分析:说明:

2014-06-26 10:41:08 780

原创 UVa 10785 - The Mad Numerologist

题目:给你一张大写字母的权值表,让你构造一个串,奇数位为元音

2014-06-25 21:04:00 760

原创 UVa 305 - Joseph

题目:有2n个人,前n个是好人h

2014-06-25 10:12:18 1399

原创 UVa 900 - Brick Wall Patterns

题目:在一个2*n的地面上铺1分析:dp。

2014-06-25 10:04:00 1198

原创 UVa 10387 - Billiard

题目:在一个矩形上有个台球

2014-06-25 09:18:47 606

原创 UVa 386 - Perfect Cubes

题目:分析:暴力。三层循环计算即可,第四个数

2014-06-25 00:27:31 1391 1

原创 UVa 11984 - A Change in Thermal Unit

题目:给你初始的摄氏温度c,然后是分析:

2014-06-24 23:59:48 744

原创 UVa 10209 - Is This Integration ?

题目:一个边长为a的正方形,以每个顶点为圆心a为

2014-06-24 10:17:18 1458

原创 UVa 112 - Tree Summing

题目:给你一个数和一棵树,问时钟是否存在根到叶子的路径使得路径上的数字和与已知数相等。分析:递归、栈。因为除了最外边的树外,其他都有两颗子树,直接递归求解即可。            如果存在一棵子树成立,即返回成立。注意空叶子为空不是0,它的上级加点返回结果。说明:注意数据中可能有负数。(POJ1145)#include #include #include using n

2014-06-24 09:40:01 3161

原创 UVa 392 - Polynomial Showdown

题目:分析:说明:

2014-06-23 22:21:42 1110

原创 UVa 10945 - Mother bear

题目:回文串判断。分析:字符串

2014-06-23 10:58:28 713

原创 UVa 151 - Power Crisis

题目:有nge电厂,按照约瑟夫环的规则断电,要求

2014-06-23 10:50:24 6103

原创 UVa 10177 - (2/3/4)-D Sqr/Rects/Cubes/Boxes?

题目:求出边长为n的,2,3,4维

2014-06-23 10:36:54 782

原创 UVa 406 - Prime Cuts

题目:给你2个数n,C,确定,不超过n的素数的中间的

2014-06-23 02:36:33 2752

原创 UVa 344 - Roman Digititis

题目:分析:说明:

2014-06-23 00:58:59 722

原创 UVa 256 - Quirksome Squares

题目:求一个分析:打表。说明:

2014-06-23 00:29:40 1255

原创 UVa 624 - CD

题目:给你一些音乐的播放时间,yizhao分析:说明:

2014-06-23 00:21:46 1156

原创 UVa 10061 - How many zero's and how many digits ?

题目:给你一个数字n,一个数字b,问n!转化成b进制后的位数

2014-06-20 10:47:06 1508 3

原创 UVa 10250 - The Other Two Trees

题目:已知2点,求另外两点,使得zhe

2014-06-20 09:11:28 759

原创 UVa 375 - Inscribed Circles and Isosceles Triangles

题目:给你一个等腰三角形的gao

2014-06-20 00:08:01 2112

原创 UVa 10719 - Quotient Polynomial

题目:多项式p(x) = (x-k)q(x)+r,已知k

2014-06-19 23:15:57 623

原创 UVa 10790 - How Many Points of Intersection?

题目:有两条平行线,上面有n个点,下面有m个点,问将所有点连线,最多

2014-06-19 22:02:02 927

原创 UVa 10112 - Myacm Triangles

题目:给你平面上的4-15个点,让你找到面积最大的三角形,三角形中bu

2014-06-19 21:28:06 693

原创 UVa 10879 - Code Refactoring

题目:给你一个数,将它分成A*B和C*D,且ABCDjunbuxiangton

2014-06-19 20:21:12 757

原创 UVa 408 - Uniform Generator

题目:随机生成器,给出STEP和MOD问是否可以生成全部的[0,MOD-1]的序列。分析:数论。

2014-06-19 11:43:45 1715

原创 UVa 10392 - Factoring Large Numbers

题目:建一个分析:说明:

2014-06-19 11:12:51 570

原创 UVa 550 - Multiplying by Rotation

题目:给你一个数字的尾数k,ji

2014-06-19 08:41:31 721

原创 UVa 10916 - Factstone Benchmark

题目:分析:说明:#include #include #include using namespace std;int main(){ int year; while ( cin >> year && year ) { double k = pow( 2.0, (year-1940)/10 )*log10(2.0); double sum = 0.0; f

2014-06-19 00:13:02 802

原创 UVa 10499 - The Land of Justice

题目:分析:说明:

2014-06-18 23:42:45 738

原创 UVa 846 - Steps

题目:给你两个数,在两个数中间插入数字,使得xian

2014-06-18 23:09:03 1027

原创 UVa 10494 - If We Were a Child Again

题目:分析:说明:

2014-06-18 21:01:24 607

原创 UVa 748 - Exponentiation

题目:计算大整数的幂运算。分析:模拟。先将小数化成zheng

2014-06-18 09:13:49 692

原创 UVa 465 - Overflow

题目:给你一个计算式(2个操作数,)

2014-06-18 08:29:37 527

SOFA: A Multi-Model Framework for Interactive Physical Simulation

HAL is a multi-disciplinary open access archive for the deposit and dissemination of scientific research documents, whether they are published or not. The documents may come from teaching and research institutions in France or abroad, or from public or private research centers.

2018-06-24

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除