摘要: 注意是>=//#define LOCAL#include#include#include#include#includeusing namespace std;int T,maxx;std::map word_count;std::map::iterator be,ed,result;string ... 阅读全文
posted @ 2014-05-13 20:25 剑风云 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 注意java不要有包名(并且严格按照输出,一个换行符都不能少):import java.math.BigInteger;import java.util.Scanner;public class Main { public static void main(String[] args) { ... 阅读全文
posted @ 2014-05-13 17:53 剑风云 阅读(145) 评论(0) 推荐(0) 编辑
摘要: //#define LOCAL#include#includeint const MAX_N=10001;int N,T;std::pair P[MAX_N];void solve(){ char c_now='#',c_next; int i=0,sum=0; while(tru... 阅读全文
posted @ 2014-05-13 16:57 剑风云 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 观察可以发现,0,1,2,……,n结尾的分组中,maxsum a[0] = a[0]maxsum a[1] = max( a[0] + a[1] ,a[1]) = max( maxsum a[0] + a[1] ,a[1])maxsum a[2] = max( max ( a[0] + a[1] +... 阅读全文
posted @ 2014-05-13 15:50 剑风云 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 二分搜索思想:bool C(double x)可以得到长度为x的绳子//#define LOCAL#include#includeint const MAX_N=10005;int const MAX_M=100;double const INF=100000000;int N,K;double d... 阅读全文
posted @ 2014-05-13 10:32 剑风云 阅读(284) 评论(0) 推荐(0) 编辑