ural Minimal Coverage (区间覆盖)

2024-08-28 10:18

本文主要是介绍ural Minimal Coverage (区间覆盖),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

http://acm.timus.ru/problem.aspx?space=1&num=1303


给出一些区间,选择尽量少的区间能覆盖到[0,m]。

小白p154,典型的区间覆盖问题。一直在想怎么dp。。

首先预处理,先按左端点从小到大排序,若左端点相同右端点从大到小排序,若区间x完全包含y,按照贪心的思想,y是没有意义的,有大区间可以选何必选择小区间。处理完事之后各个区间满足a1 <= a2 <= a3....且b1 <= b2 <= b3...

这样找到第一个覆盖0的区间之后,记录上一个区间所能到达的最右边位置,然后去找一个左端点最接近该位置的区间继续覆盖,直到覆盖到M点。


#include <stdio.h>
#include <iostream>
#include <map>
#include <set>
#include <list>
#include <stack>
#include <vector>
#include <math.h>
#include <string.h>
#include <queue>
#include <string>
#include <stdlib.h>
#include <algorithm>
#define LL __int64
#define eps 1e-12
#define PI acos(-1.0)
using namespace std;
const int INF = 0x3f3f3f3f;
const int maxn = 4010;struct Line
{int l,r;bool operator < (const struct Line &tmp)const{if(l == tmp.l)return r > tmp.r;return l < tmp.l;}
} b[100010],a[100010],ans[100010];int main()
{int m,t1,t2;while(~scanf("%d",&m)){int l,r;t1 = 0;while(~scanf("%d %d",&l,&r)){if(l == 0 && r == 0)break;a[++t1] = (struct Line){l,r};}sort(a+1,a+1+t1);t2 = 1;b[1] = a[1];for(int i = 2; i <= t1; i++){if(a[i].r < 0 || a[i].l > m)continue;if(!(a[i].l >= b[t2].l && a[i].r <= b[t2].r))//包含的区间去掉b[++t2] = a[i];}t2++;b[t2] = (struct Line){m+1,m+1};int k = 0;int e = -1,i;for(i = 1; i < t2; i++){if(b[i].l <= 0 && b[i+1].l > 0){ans[++k] = b[i];e = b[i].r;break;}}if(k == 0){printf("No solution\n");continue;}for(; i < t2; i++){if(e >= m)break;if(b[i].l <= e && b[i+1].l > e) //找到最接近上一个区间端点的区间覆盖{ans[++k] = b[i];e = b[i].r;}}if(e < m){printf("No solution\n");continue;}else{printf("%d\n",k);for(int i = 1; i <= k; i++){printf("%d %d\n",ans[i].l,ans[i].r);}}}return 0;
}


这篇关于ural Minimal Coverage (区间覆盖)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1114484

相关文章

hdu 1754 I Hate It(线段树,单点更新,区间最值)

题意是求一个线段中的最大数。 线段树的模板题,试用了一下交大的模板。效率有点略低。 代码: #include <stdio.h>#include <string.h>#define TREE_SIZE (1 << (20))//const int TREE_SIZE = 200000 + 10;int max(int a, int b){return a > b ? a :

最大流=最小割=最小点权覆盖集=sum-最大点权独立集

二分图最小点覆盖和最大独立集都可以转化为最大匹配求解。 在这个基础上,把每个点赋予一个非负的权值,这两个问题就转化为:二分图最小点权覆盖和二分图最大点权独立集。   二分图最小点权覆盖     从x或者y集合中选取一些点,使这些点覆盖所有的边,并且选出来的点的权值尽可能小。 建模:     原二分图中的边(u,v)替换为容量为INF的有向边(u,v),设立源点s和汇点t

hdu4267区间统计

题意:给一些数,有两种操作,一种是在[a,b] 区间内,对(i - a)% k == 0 的加value,另一种操作是询问某个位置的值。 import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import

hdu4417区间统计

给你一个数列{An},然后有m次查询,每次查询一段区间 [l,r] <= h 的值的个数。 import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamRead

hdu3333区间统计

题目大意:求一个区间内不重复数字的和,例如1 1 1 3,区间[1,4]的和为4。 import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;

POJ3041 最小顶点覆盖

N*N的矩阵,有些格子有物体,每次消除一行或一列,最少要几次消灭完。 行i - >列j 连边,表示(i,j)处有物体,即 边表示 物体。 import java.io.BufferedReader;import java.io.InputStream;import java.io.InputStreamReader;import java.io.PrintWriter;impo

ural 1297. Palindrome dp

1297. Palindrome Time limit: 1.0 second Memory limit: 64 MB The “U.S. Robots” HQ has just received a rather alarming anonymous letter. It states that the agent from the competing «Robots Unli

ural 1149. Sinus Dances dfs

1149. Sinus Dances Time limit: 1.0 second Memory limit: 64 MB Let  An = sin(1–sin(2+sin(3–sin(4+…sin( n))…) Let  Sn = (…( A 1+ n) A 2+ n–1) A 3+…+2) An+1 For given  N print  SN Input One

ural 1820. Ural Steaks 贪心

1820. Ural Steaks Time limit: 0.5 second Memory limit: 64 MB After the personal contest, happy but hungry programmers dropped into the restaurant “Ural Steaks” and ordered  n specialty steaks

ural 1017. Staircases DP

1017. Staircases Time limit: 1.0 second Memory limit: 64 MB One curious child has a set of  N little bricks (5 ≤  N ≤ 500). From these bricks he builds different staircases. Staircase consist