Codeforces 383B Volcanoes(排序+检索)

转自:http://blog.csdn.net/keshuai19940722/article/details/18965287
原题:http://codeforces.com/problemset/problem/383/B

题目大意:给出n和m,表示在一个n*n的图上,从(1,1)开始移动,每可以向下或向右移动,问是否可以移动(n,n),m表示说有m块障碍物,给出它们的坐标。

解题思路:将障碍物按照y坐标大小后按照x坐标排序,然后对于每一列考虑可以移动到的区间。ans始终等于2*n-2。

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>

using namespace std;
typedef long long ll;
const int N = 100005;

struct state {
    int x, y;
}blo[N], rec[N], cur[N];
ll n, m;

inline bool cmp (const state& a, const state& b) {
    if (a.y == b.y) return a.x < b.x;
    return a.y < b.y;
}

void init () {
    cin >> n >> m;

    int xx, yy;
    for (int i = 0; i < m; i++) {
        scanf("%d%d", &xx, &yy);
        blo[i].x = xx; blo[i].y = yy;
    }
}

bool judge () {
//  if (n > m) return true;

    sort(blo, blo + m, cmp);
    int cnt = 1;
    rec[0].x = 1, rec[0].y = 1;

    for (int i = 0; i < m; i++) {
        if (blo[i].y != blo[i-1].y + 1) {
            cnt = 1;
            rec[0].y = n;
        }

        int k, tmp = 0, c = 0;
        for (k = i + 1; blo[k].y == blo[i].y; k++); k--;

        for (int j = i; j <= k; j++) {
            if (blo[j].x > tmp + 1) {
                cur[c].x = tmp + 1; cur[c].y = blo[j].x - 1;
                c++;
            }
            tmp = blo[j].x;
        }
        if (n > tmp) {
            cur[c].x = tmp + 1; cur[c].y = n; c++;
        }

        int t = 0;
        for (int i = 0; i < cnt; i++) {
            while (cur[t].x <= rec[i].y && t < c) {
                if (cur[t].y >= rec[i].x) {
                    cur[t].x = max(cur[t].x, rec[i].x);
                } else {
                    cur[t].x = cur[t].y = -1;
                }
                t++;
            }
            if (t >= c) break;
        }

        cnt = 0;
        for (int i = 0; i < t; i++) if (cur[i].x != -1 && cur[i].y != -1) {
            rec[cnt].x = cur[i].x; rec[cnt].y = cur[i].y;  cnt++;
        }
        if (cnt == 0) return false;
        i = k;
    }

    if (blo[m-1].y != n) return true;
    if (rec[cnt-1].y == n) return true;
    return false;
}

int main () {
    init();
    if (judge()) cout << 2 * n - 2 << endl;
    else printf("-1\n");
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值