上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 32 下一页
摘要: 2014-09-0916:39:37题目链接思路:做完这题,对最小生成树的理解也就差不多了。直接暴力可搞,但可以优化。先对原图进行一次Kruskal,求出最优n-1条边,然后用二进制枚举方法(循环 or DFS),考虑每个套餐的包含点(m个),买这个套餐相当于加进来m-1条权为0的边,然后再用一次K... 阅读全文
posted @ 2014-09-09 16:43 Naturain 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0914:05:21题目链接思路:用树状数组来优化DP过程,详情见Bestcoder题解,本来用以前学过的离散化来写。。结果搞不定,于是重新学了个离散化:推荐博客 离散化思路:用b[]数组用来做a[]数组的副本,然后就是unique,以及lower_bound函数的调用了。 1 /... 阅读全文
posted @ 2014-09-09 14:08 Naturain 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 2014-08-04 16:33:57 (1) map map定义形式 map<type1,type2> map_name; map的基本操作函数: C++ Maps是一种关联式容器,包含“关键字/值”对 begin() 返回指向map头部的迭代器 clear() 删除所有元素 count() 返回 阅读全文
posted @ 2014-09-08 22:14 Naturain 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0821:53:10思路:将x非降序排序,x相等时y非升序排序,然后在过程中要注意两头牛的S、E相等的情况,此时应该直接复制上头牛的答案并且将该牛Update,巨坑的是数组开到100005 WA,开到100010竟然就AC了 QAQAQAQAQAQAQAQAQAQAQ。 1 /***... 阅读全文
posted @ 2014-09-08 21:55 Naturain 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0820:20:04思路:也是求逆序数,但这题需要注意的是只计算在中间的交叉点,所以要排序时要处理一下。。。另外吐槽下这坑爹的数据范围。 1 /**********************************************************************... 阅读全文
posted @ 2014-09-08 20:21 Naturain 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0816:47:48思路:很久以前写了个归并排序,贴在这方便以后看吧。现在在练树状数组,通过这题顺便学了离散化,来说说吧:通过离散化保存下数的相对大小,然后用树状数组求出每个数前面有多少个数比它小,然后根据这个数的位置就能求出前面有多少个数比它大了(即逆序数)。树状数组版: 1 /*... 阅读全文
posted @ 2014-09-08 16:51 Naturain 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0815:51:22思路:直接树状数组,这题给我的启示是:树状数组要从1开始编号,而不能从0开始,因为lowbit(0) == 0,会导致无限循环。 1 /****************************************************************... 阅读全文
posted @ 2014-09-08 16:03 Naturain 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0815:14:35思路:参考大白书的思路。。熟悉了下树状数组。 1 /************************************************************************* 2 > File Name: hdu2492.cpp 3... 阅读全文
posted @ 2014-09-08 15:15 Naturain 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0800:26:02贴一发矩阵快速幂的模板。 1 /************************************************************************* 2 > File Name: b.cpp 3 > Author: N... 阅读全文
posted @ 2014-09-08 00:26 Naturain 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0614:58:251626 - Brackets sequenceLet us define a regular brackets sequence in the following way:Empty sequence is a regular sequence.If S is ... 阅读全文
posted @ 2014-09-06 15:00 Naturain 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0520:56:52题目老长:放链接思路:第二版小白书例题,参考了书上的思路。事先预处理出每个颜色在两个序列中的开始和结束位置,用dp[i][j]表示:第一个串用了前 i 个字符,第二个串用了前 j 个字符组成的串的最优解,每次递推都要用O(1)的时间来计算“有多少个颜色已经开始但尚... 阅读全文
posted @ 2014-09-05 21:02 Naturain 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0501:01:28How many integers can you findTime Limit: 12000/5000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 4... 阅读全文
posted @ 2014-09-05 01:04 Naturain 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0500:59:31看了别人的博客,感觉此容斥写的相当精巧,给赞!相关题解 1 /************************************************************************* 2 > File Name: hdu1695.... 阅读全文
posted @ 2014-09-05 01:01 Naturain 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0415:51:071395 - Slim SpanTime limit: 3.000 secondsThe graphGis an ordered pair(V,E), whereVis a set of vertices{v1,v2,...,vn}andEis a set of ... 阅读全文
posted @ 2014-09-04 15:55 Naturain 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0414:10:38Goffi and GCDTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 584Accepted Submiss... 阅读全文
posted @ 2014-09-04 14:12 Naturain 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0323:59:30RaceDisky and Sooma, two of the biggest mega minds of Bangladesh went to a far country. They ate, coded and wandered around, even in... 阅读全文
posted @ 2014-09-04 00:02 Naturain 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0322:06:40Critical MassDuring the early stages of the Manhattan Project, the dangers of the new radioctive materials were not widely known. Va... 阅读全文
posted @ 2014-09-03 22:09 Naturain 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0320:21:051637 - Double PatienceDouble Patience is a single player game played with a standard 36-card deck. The cards are shuffled and laid d... 阅读全文
posted @ 2014-09-03 20:25 Naturain 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0316:32:21Problem GProbability|GivenInput:Standard InputOutput:Standard OutputN friends go to the local super market together. The probability... 阅读全文
posted @ 2014-09-03 16:39 Naturain 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 2014-09-0315:21:58找规律。不说啥了。 1 /************************************************************************* 2 > File Name: Uva10491.cpp 3 > Autho... 阅读全文
posted @ 2014-09-03 15:22 Naturain 阅读(119) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 32 下一页