Arrange the Schedule
Time Limit: 1 Second Memory Limit: 65536 KB
In Summer 2011, the ZJU-ICPC Team has a n-days training schedule. ZJU-ICPC Team has been divided into 4 Group: Akiba, BiliBi...
分类:
其他好文 时间:
2014-11-05 21:37:51
阅读次数:
284
Java1.5提供了关键字enum,能够通过该关键字方便得定义自己须要的枚举类型,比方enumSeason{SPRING,SUMMER,AUTUMN,WINTER}就定义了一个季节枚举类型。在本例中,对于Season.SPRING这个对象,Season.SPRING.name()能够得到该对象的字符...
分类:
编程语言 时间:
2014-11-03 22:20:45
阅读次数:
181
如果你是音乐爱好者:这些歌, 请戴上耳机, 调大音量, 一个人听 ,全世界 都是你的!!!!!(一)这些歌很温暖,没有金属味,适合有阳光的午后,很悠闲。。。【Anaesthesia】Maximilian Hecker强烈推荐【Summer Days In Bloom】Maximilian Hecke...
分类:
其他好文 时间:
2014-10-31 13:50:33
阅读次数:
233
偶数时,中位数之间的数都是可以的(包括中位数)
奇数时,一定是中位数
推导请找初中老师
#include
#include
#include
#include
#include
using namespace std;
int box[1000000];
int main()
{
//freopen("in","r",stdin);
//freopen...
分类:
其他好文 时间:
2014-10-24 11:03:24
阅读次数:
240
HDU 1827 Summer Holiday
题目链接
题意:中文题
思路:强连通缩点,每个点的权值为强连通中最小值,然后入度为0的点就是答案
代码:
#include
#include
#include
#include
#include
using namespace std;
const int N = 1005;
const int INF = ...
分类:
其他好文 时间:
2014-10-19 23:21:42
阅读次数:
244
Java1.5提供了关键字enum,能够通过该关键字方便得定义自己须要的枚举类型,比方enumSeason{SPRING,SUMMER,AUTUMN,WINTER}就定义了一个季节枚举类型。在本例中,对于Season.SPRING这个对象,Season.SPRING.name()能够得到该对象的字符...
分类:
编程语言 时间:
2014-10-19 19:53:40
阅读次数:
213
Problem Description
To see a World in a Grain of Sand
And a Heaven in a Wild Flower,
Hold Infinity in the palm of your hand
And Eternity in an hour.
—— William Blake
听说...
分类:
其他好文 时间:
2014-10-19 01:28:31
阅读次数:
326
Java1.5提供了关键字enum,能够通过该关键字方便得定义自己须要的枚举类型,比方enumSeason{SPRING,SUMMER,AUTUMN,WINTER}就定义了一个季节枚举类型。在本例中,对于Season.SPRING这个对象,Season.SPRING.name()能够得到该对象的字符...
分类:
编程语言 时间:
2014-10-09 01:51:57
阅读次数:
177
#include /*枚举1、某些特定类型取值是固定的几个值,所以需要枚举2、枚举定义时括号中的不是属性,而是值的符号。 3、改变值符号的顺序,影响使用(值发生变化,除非用赋值符号写死); 不会改变内存分配。 */ enum season{ spring, summer, autumn, win.....
分类:
其他好文 时间:
2014-10-08 00:07:54
阅读次数:
192
题目链接:
http://acm.hdu.edu.cn/showproblem.php?pid=1827
Summer Holiday
Time Limit: 10000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1721 Accepted...
分类:
其他好文 时间:
2014-09-30 23:42:10
阅读次数:
209