最大不相交集合的数量。思路是dp[i][j]表示已经有i个不相交集合下一个不相交集合的最右边界。离散化后,通过贪心解。 1 /* 4343 */ 2 #include <iostream> 3 #include <sstream> 4 #include <string> 5 #include <ma
分类:
其他好文 时间:
2016-02-13 00:27:30
阅读次数:
276
先安装 sensors然后修改conky配置use_xft yes
xftfont WenQuanYi Zen Hei:pixelsize=12
xftalpha 0.1
update_interval 1
total_run_times 0
own_window yes
own_window_type normal
own_window_transparent yes
own_window_h...
分类:
其他好文 时间:
2016-02-09 21:06:14
阅读次数:
704
INTERVAL DAY TO SECOND类型可以用来存储单位为天和秒的时间间隔。下面这条语句创建一个名为promotions的表,用来存储促销信息。promotions表包含了一个INTERVAL DAY TO SECOND类型的列duration,该列用来记录促销有效的时间间隔: CREATE
分类:
数据库 时间:
2016-02-02 17:42:27
阅读次数:
248
博客《oracle分区》中讲了oracle的几种分区,并且对于oracle的典型分区如Range分区和List分区给了示例。 在实际运用Range分区时,遇到了这样的难题: createtableTMP_LXQ_1 ( PROPOSALNO VARCHAR2(22), STARTDATE DATE
分类:
数据库 时间:
2016-02-02 14:59:16
阅读次数:
179
格式:NumToYMInterval(n, interval_unit); n: 数值类型 interval_unit: 'YEAR', 'MONTH' ,或其他可以转换成这两个值之一的表达式 NumToYMInterval(1, 'YEAR') :一年后的间隔 NumToYMInterval(-1
分类:
数据库 时间:
2016-02-02 14:50:36
阅读次数:
192
Given an integer array in the construct method, implement two methods query(start, end) and modify(index, value): For query(start, end), return the su
分类:
其他好文 时间:
2016-02-02 06:28:06
阅读次数:
248
Given an integer array (index from 0 to n-1, where n is the size of this array), and an query list. Each query has two integers [start, end]. For each
分类:
其他好文 时间:
2016-02-02 06:25:40
阅读次数:
155
Given an integer array (index from 0 to n-1, where n is the size of this array), and an query list. Each query has two integers [start, end]. For each
分类:
其他好文 时间:
2016-02-01 15:35:22
阅读次数:
281
NSDate *date = [NSDate date]; NSTimeZone *zone = [NSTimeZone systemTimeZone]; NSInteger interval = [zone secondsFromGMTForDate: date]; NSDate *localeD
分类:
移动开发 时间:
2016-02-01 14:29:46
阅读次数:
140
For a Maximum Segment Tree, which each node has an extra value max to store the maximum value in this node's interval. Implement a modify function wit
分类:
其他好文 时间:
2016-02-01 09:52:21
阅读次数:
176