自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 收藏
  • 关注

转载 (Quote)A good blog article about Unicode(charset&encoding)

 Ive ever studied something about multilingual programming, and I know that you should always get resource from some non-english programming guys(as they will give you more practical experience :) ).

2007-11-21 12:07:00 556

原创 URAL 1015. Test the Difference!

Problem Url: http://acm.timus.ru/problem.aspx?space=1&num=1015This is a math related problem. First well need to determine the total possible scheme of dices, therere 30 schemes. To calculate this

2007-11-20 17:51:00 774

原创 URAL 1083. Factorials!!!

 A simple math question, just scrab a simple answer:#include cstdio>#include iostream>using namespace std;int N = 0;int K = 0;long long result = 0;void main(){    scanf("%d", &N);    getchar();   

2007-11-04 22:05:00 784

原创 URAL 1079. Maximum

problem url:  http://acm.timus.ru/problem.aspx?space=1&num=1079this should be a mathematics question. So far I got two answers. MY own is using static array to cache all the sequence elements while

2007-11-04 22:01:00 704

原创 URAL 1068. Sum

problem url:  http://acm.timus.ru/problem.aspx?space=1&num=1068this is a simple math calculation question:#some one only use one-line code to compute the result#include cstdio>#include iostrea

2007-11-04 21:53:00 609

原创 URAL 1044. Lucky tickets. Easy!

 problem url: http://acm.timus.ru/problem.aspx?space=1&num=1044This issue require some math trick, we shoud use "Permutations" here: #include cstdio>#include iostream>#define MAX_SUM 36using n

2007-11-04 21:46:00 768

原创 URAL 1028. Stars

problem url: http://acm.timus.ru/problem.aspx?space=1&num=1028Got two methods here. One uses hash table which will give you O(Nsqrt(N)) ,  another uses segment tree(binary search..) which gives you

2007-11-04 21:39:00 882

原创 URAL 1026. Questions and answers

problem url:  http://acm.timus.ru/problem.aspx?space=1&num=1026At first, I assumed this is a sorting question and spent much time on sorting the input record list(Ive tried both BST and BBST(AVL))

2007-11-04 21:18:00 685

原创 URAL 1025. Democracy in danger

problem url: http://acm.timus.ru/problem.aspx?space=1&num=1025this should be a sorting question, I used tried using binary sort tree to sort the given vote group serials and print the least half(+1)

2007-11-04 21:06:00 676

原创 URAL 1022. Genealogical tree

Problem url: http://acm.timus.ru/problem.aspx?space=1&num=1022This is a typical problem that uses topological sorting. At first I misunderstood it as a normal internal sorting issue and got wrong th

2007-11-04 20:54:00 720

原创 URAL 1001. Reverse root

problem url: http://acm.timus.ru/problem.aspx?space=1&num=1001 Use static Array to hold all the square root values and print them all: the AC result is not so good: 0.42s and 12xxKB, maybe I sho

2007-11-04 20:44:00 970 1

原创 A Brief Summary of Towers of Hanoi Puzzle

Just spent some time code all the three solutions. So far I havent added complexity analysis and will append it later:  *recursive approach:#include cstdio>#include iostream>using namespace std;v

2007-10-31 18:17:00 640

空空如也

空空如也

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

TA关注的人

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