12 2015 档案
摘要:传送门 Time Limit: 3000MS Memory Limit: 65536K Case Time Limit: 1000MS Special Judge Description Bill is developing a new mathematical theory for human e
阅读全文
摘要:传送门 Description We often use the matrix to analyze reality models. There are lots of algorithm about matrix in Linear Algebra like matrix multiplicati
阅读全文
摘要:传送门 Time Limit: 1000MS Memory Limit: 65536K Description A histogram is a polygon composed of a sequence of rectangles aligned at a common base line. T
阅读全文
摘要:大学以来,我的健康状况时好时坏。大一时为一场感冒发烧虚惊一场,大二较为平静,今年又经历了人生第一次手术。 大学生活可说是混乱的,我该反省。虽说“痛定思痛,痛何如哉”,但人往往是好了伤疤忘了疼。 现在必须着手改变,初步的想法是想法定下几条准则 1、每天起床后直到晚上睡觉,期间不再回床上躺着。 2、每天
阅读全文
摘要:传送门 Time Limit: 1 Sec Memory Limit: 128 MB Description 据说...高中学习了好多公式。所以...萌学长不知道该用什么公式来解决下面这个问题。对于一些平面图形,比如正方形、矩形、菱形、圆...如果一个图形能够完全包含在另一个图形里面,萌学长就认为这
阅读全文
摘要:1 #include 2 using namespace std; 3 4 const int N (1e5+5), M(1e5+5); 5 6 int head[N]; 7 struct Edge{ 8 /* 9 r: residual capacity 10 */ 11 int v, r, nt; 12 }E[M]; 13 int ta...
阅读全文
摘要:2009国家集训队徐持衡的论文《浅谈几类背包问题》里提到的一个经典问题: 长度限制最大连续和问题: 给出长度为 n 的序列 X i ,求这个序列中长度不超过 Lmax 的最大连续和。 Implementation
阅读全文