Codeforces 685D Kay and Eternity (扫描线)

题意:

给你 n 个点,再给你正方形边长,问你在整个无限大的网格中,包含有1,2,3..n个点的正方形有多少个

解法:

因为整个网格是无限大的,而且点的坐标范围也很大,所以需要离散化,既然用到了离散化,而且又是这种覆盖的问题,就可以考虑扫面线,我们用cnt[y]来辨识y这个坐标被覆盖了多少次,因为确定一个正方形只需要确定左下的点就好了,所以只需要统计左下被覆盖多少次。我们把每一个点都当成两个事件分别是+1, -1,这样无论离散化x还是y都无所谓。具体看代码。

//
//  Created by  CQU_CST_WuErli
//  Copyright (c) 2016 CQU_CST_WuErli. All rights reserved.
//
//#pragma comment(linker, "/STACK:102400000,102400000")
#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cmath>
#include <string>
#include <vector>
#include <map>
#include <queue>
#include <stack>
#include <set>
#include <algorithm>
#include <sstream>
#define CLR(x) memset(x,0,sizeof(x))
#define OFF(x) memset(x,-1,sizeof(x))
#define MEM(x,a) memset((x),(a),sizeof(x))
#define BUG cout << "I am here" << endl
#define lookln(x) cout << #x << "=" << x << endl
#define SI(a) scanf("%d", &a)
#define SII(a,b) scanf("%d%d", &a, &b)
#define SIII(a,b,c) scanf("%d%d%d", &a, &b, &c)
const int INF_INT=0x3f3f3f3f;
const long long INF_LL=0x7f7f7f7f;
const int MOD=1e9+7;
const double eps=1e-10;
const double pi=acos(-1);
typedef long long  ll;
using namespace std;

const int N = 100010;

int n, k;
int cnt[N << 1];
ll ans[N];
int pre[N << 1];
int x[N], y[N];
vector<int> Hash;
struct Query {
    int l, r, y, flag;
    Query(int l, int r, int y, int flag):l(l), r(r), y(y), flag(flag) {}
    Query() {}
    bool operator < (const Query& rhs) const {
        return y < rhs.y;
    }
};
vector<Query> qs;

int main(int argc, char const *argv[]) {
#ifdef LOCAL
    freopen("C:\\Users\\john\\Desktop\\in.txt","r",stdin);
    // freopen("C:\\Users\\john\\Desktop\\out.txt","w",stdout);
#endif
    SII(n, k);
    for (int i = 1; i <= n; i++)
        SII(x[i], y[i]);
    CLR(cnt); CLR(ans);
    for (int i = 1; i <= 2 * n; i++)
        pre[i] = -INF_INT;

    Hash.push_back(-INF_INT);
    for (int i = 1; i <= n; i++) {
        Hash.push_back(x[i]);
        Hash.push_back(x[i] + k);
    }
    sort(Hash.begin(), Hash.end());
    Hash.resize(unique(Hash.begin(), Hash.end()) - Hash.begin());
    for (int i = 1; i <= n; i++) {
        int l = upper_bound(Hash.begin(), Hash.end(), x[i]) - Hash.begin();
        int r = lower_bound(Hash.begin(), Hash.end(), x[i] + k) - Hash.begin();
        qs.push_back(Query(l, r, y[i], 1));
        qs.push_back(Query(l, r, y[i] + k, -1));
    }
    sort(qs.begin(), qs.end());

    for (auto & q : qs) {
        for (int i = q.l; i <= q.r; i++) {
            ans[cnt[i]] += 1ll * (Hash[i] - Hash[i - 1]) * (q.y - pre[i]);
            cnt[i] += q.flag;
            pre[i] = q.y;
        }
    }
    for (int i = 1; i <= n; i++)
        printf("%I64d ", ans[i]);
    puts("");
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值