1. 介绍 Welcome to part 0 of the article series about Catel. Quite a strange part, don’t you think? Well, we hear from a lot of people that the real pow...
分类:
其他好文 时间:
2014-08-23 17:38:31
阅读次数:
221
题目链接:http://acm.uva.es/local/online_judge/search_uva.htmlProblem:Find out the center of masses of a convex polygon.Input:A series of convex polygons, ...
分类:
其他好文 时间:
2014-08-22 01:31:25
阅读次数:
203
1、TChart Hello world
放一个控件到窗体上,然后写代码加入一个折线数据序列:
var
Series: TLineSeries;
begin
Series := TLineSeries.Create(Chart1);
Series.Add(100, '头部', clRed);
Series.Add(200, '颈部', clGreen);
Chart1.AddSeries(Ser...
分类:
其他好文 时间:
2014-08-19 19:05:55
阅读次数:
636
有了题解以后这题就成了一个模拟题。不过写了好久才把它写对…… Sad#include #include #include #include #include #include #include #include #include #include #include #include #include...
分类:
其他好文 时间:
2014-08-18 21:52:32
阅读次数:
246
Problem:
Give a series of IP segments, for example, [0.0.0.1-0.0.0.3], [123.234.232.21-123.245.21.1]...
Now there is a new IP, find which IP segment it's in ?
Solution:
First, we could map the end...
分类:
其他好文 时间:
2014-08-18 00:18:13
阅读次数:
309
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4927
题目大意:就是把相邻的两个数想减,然后会得到一串数,然后继续想减,当还剩一个数时,问这个数是多少。
思路:开始解题时,直接模拟,结果果断WA,然后就在那儿找规律,找出来后发现是各个数的绝对值是杨辉三角(因为这个杨辉三角是正负交替出现的),有啦规律,然后就开始做题,结果还是错啦几次,然后发现是...
分类:
其他好文 时间:
2014-08-13 22:30:01
阅读次数:
275
点击打开链接
Series 1
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)
Total Submission(s): 921 Accepted Submission(s): 342
Problem Description
Let A...
分类:
其他好文 时间:
2014-08-12 17:07:24
阅读次数:
225
Series 1
大意:
题意不好翻译,英文看懂也不是很麻烦,就不翻译了。
Problem Description
Let A be an integral series {A1, A2, . . . , An}.
The zero-order series of A is A itself.
The first-order series of A i...
分类:
其他好文 时间:
2014-08-12 10:21:42
阅读次数:
241
Series 1大意:Series 1Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 894Accepted Submission(s): 33...
分类:
其他好文 时间:
2014-08-12 10:15:14
阅读次数:
231
题意:一个数列每一次将它变为 bi = ai+1 - ai 最后数组变为一个数,问你这个数答案为多少。解题思路:最开始以为这个数一定是在int范围以内的,但是推出了公式就不湿了 公式应该是 C(n,0)*a[n] - C(n,1)*a[n-1] + C(n,2)*a[n-2] ....一直到 a[....
分类:
其他好文 时间:
2014-08-12 09:01:33
阅读次数:
188