Codeforces 527D Clique Problem

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.

解题思路:这题看着吓人,求解200000W个点的无向图的最大团,然后就往怎么优化建图,怎么求解想去了。我不是傻吗?这是不可能的,后来发现原来这是一道思维题。对于xi,xj,如果xi>xj,则为xi-wi >= xj+wj;如果xi小于xj,则为xi+wi<=xj-wj,可以看出只要某一个点和xi在xi-wi,xi+wi区间内有交点则这两个点之间是不连边的,因此我们很容易看出这是一道求解最多不相交区间的题目,贪心算法解决即可。个人感觉CF上的思维题还是很赞的。。。

#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <algorithm>
#include <functional>
using namespace std;

struct Seg {
    int l, r;
    Seg() { }
    Seg(int _l, int _r) : l(_l), r(_r) { }
    bool operator < (const Seg &s) const {
        return  r < s.r;
    }
};
vector<Seg> svec;

int main() {

    //freopen("aa.in", "r", stdin);

    int n, x, w;
    scanf("%d", &n);
    for(int i = 1; i <= n; ++i) {
        scanf("%d %d", &x, &w);
        svec.push_back(Seg(x-w, x+w));
    }
    sort(svec.begin(), svec.end());
    int ans = 1, curp = svec[0].r;
    for(int i = 1; i < n; ++i) {
        if(svec[i].l < curp) continue;
        else {
            ans++;
            curp = svec[i].r;
        }
    }
    printf("%d\n", ans);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值