1.从bam文件中提取位点的测序深度 samtools depth -b intervals.bed 1.bam intervals.bed文件包括需要提取的位点 chr1 39717581 chr1 39898741 chr1 40928207 chr1 91405097 chr1 9922562 ...
分类:
其他好文 时间:
2018-07-18 18:08:07
阅读次数:
139
题目:http://poj.org/problem?id=1201 差分约束裸题; 设 s[i] 表示到 i 选了数的个数前缀和; 根据题意,可以建立以下四个限制关系: s[bi] >= s[ai-1] + ci ( 1 <= i <= n) s[i] >= s[i-1] + 0 ( 1 <= i ...
分类:
其他好文 时间:
2018-07-07 22:28:43
阅读次数:
147
First, sort the list, then merge from start to end. Given a collection of intervals, merge all overlapping intervals. Example 1: Example 2: ...
分类:
编程语言 时间:
2018-07-02 00:03:17
阅读次数:
179
Given a collection of intervals, merge all overlapping intervals. Example 1: Example 2: 这道题看例子就观察到如果是按照区间最小值排过序的话会比较好做,不然的话找来找去复杂度应该会很高吧,排过序最多也就是O(nlo ...
分类:
编程语言 时间:
2018-07-01 00:26:23
阅读次数:
157
类型:给出一些形如a?b<=k的不等式(或a?b>=k或a?b<k或a?b>k等),问是否有解【是否有负环】或求差的极值【最短/长路径】。例子:b?a<=k1,c?b<=k2,c?a<=k3。将a,b,c转换为节点;k1,k2,k3转换为边权;减数指向被减数,形成一个有向图: 由题可得(b?a) + ...
分类:
其他好文 时间:
2018-06-21 00:08:21
阅读次数:
165
问题描述: Given an array of meeting time intervals consisting of start and end times [[s1,e1],[s2,e2],...] (si < ei), find the minimum number of conferenc ...
分类:
其他好文 时间:
2018-06-18 10:31:16
阅读次数:
165
题目链接 "POJ1201" 题解 差分约束 令$a[i]$表示是否选择$i$,$s[i]$表示$a[i]$的前缀和 对$s[i] \quad i \in [ 1,50000]$分别建立一个点 首先有 $$s[i] s[i 1] \ge 0$$ $$s[i] s[i 1] \le 1$$ 然后就是限 ...
分类:
其他好文 时间:
2018-06-09 17:58:51
阅读次数:
151
Description Given a collection of intervals, merge all overlapping intervals. Description Description Given a collection of intervals, merge all overl ...
分类:
编程语言 时间:
2018-05-30 16:43:32
阅读次数:
171
Intervals Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 28852 Accepted: 11131 Description You are given n closed, integer intervals [ai, ...
分类:
其他好文 时间:
2018-05-26 11:51:37
阅读次数:
157
Given a collection of intervals, merge all overlapping intervals. Example 1: Input: [[1,3],[2,6],[8,10],[15,18]] Output: [[1,6],[8,10],[15,18]] Explan ...
分类:
其他好文 时间:
2018-05-21 14:49:32
阅读次数:
158