博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #296 (Div. 1) B. Clique Problem 贪心
阅读量:5048 次
发布时间:2019-06-12

本文共 2719 字,大约阅读时间需要 9 分钟。

B. Clique Problem
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

The clique problem is one of the most well-known NP-complete problems. Under some simplification it can be formulated as follows. Consider an undirected graph G. It is required to find a subset of vertices C of the maximum size such that any two of them are connected by an edge in graph G. Sounds simple, doesn't it? Nobody yet knows an algorithm that finds a solution to this problem in polynomial time of the size of the graph. However, as with many other NP-complete problems, the clique problem is easier if you consider a specific type of a graph.

Consider n distinct points on a line. Let the i-th point have the coordinate xi and weight wi. Let's form graph G, whose vertices are these points and edges connect exactly the pairs of points (i, j), such that the distance between them is not less than the sum of their weights, or more formally: |xi - xj| ≥ wi + wj.

Find the size of the maximum clique in such graph.

Input

The first line contains the integer n (1 ≤ n ≤ 200 000) — the number of points.

Each of the next n lines contains two numbers xi, wi (0 ≤ xi ≤ 109, 1 ≤ wi ≤ 109) — the coordinate and the weight of a point. All xi are different.

Output

Print a single number — the number of vertexes in the maximum clique of the given graph.

Sample test(s)
Input
4 2 3 3 1 6 1 0 2
Output
3 If you happen to know how to solve this problem without using the specific properties of the graph formulated in the problem statement, then you are able to get a prize of one million dollars! The picture for the sample test.
思路 排序,然后贪心,然后乱搞,类似于区间覆盖问题…… 代码
//qscqesze#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
typedef long long ll;using namespace std;//freopen("D.in","r",stdin);//freopen("D.out","w",stdout);#define sspeed ios_base::sync_with_stdio(0);cin.tie(0)#define maxn 200001#define mod 10007#define eps 1e-9const int inf=0x7fffffff; //无限大/*inline ll read(){ int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f;}*///**************************************************************************************struct node{ int x,y;};node a[maxn];bool cmp(node aa,node bb){ if(aa.x==bb.x) return aa.y
>n; for(int i=0;i
=l) { l=a[i].x; ans++; } } cout<
<

 

转载于:https://www.cnblogs.com/qscqesze/p/4360919.html

你可能感兴趣的文章
【模板】图形面积计算
查看>>
python django + js 使用ajax进行文件上传并获取上传进度案例
查看>>
会话控制
查看>>
當使用者按下GridView的刪除按鈕時,如何讓使用者確認刪除
查看>>
OpenCV中的随机数生成
查看>>
ans menu list
查看>>
创建型模式 抽象工厂
查看>>
JSON字符串和Javascript对象字面量
查看>>
关于现在,关于未来
查看>>
day9 重写父类的方法
查看>>
你应该知道的四种优秀架构
查看>>
php 支持8种基本的数据类型
查看>>
保卫"木叶",从火影剧情看网站攻防的演变
查看>>
大数据学习——linux常用命令(三)
查看>>
linux下memcache的运用,和php结合小案例。
查看>>
COGS 1298. 通讯问题
查看>>
ip地址
查看>>
理解使用 JavaScript 构建 Metro 应用
查看>>
c++ std::string.c_str()
查看>>
i++和++i
查看>>