zoukankan      html  css  js  c++  java
  • UVA 11134

    We would like to place  n  rooks, 1 ≤  n  ≤ 5000, on a  n×n  board subject to the following restrictions

    • The i-th rook can only be placed within the rectangle given by its left-upper corner (xliyli) and its right-lower corner (xriyri), where 1 ≤ i ≤ n, 1 ≤ xli ≤ xri ≤ n, 1 ≤ yli ≤ yri ≤ n.
    • No two rooks can attack each other, that is no two rooks can occupy the same column or the same row.

    The input consists of several test cases. The first line of each of them contains one integer number, n, the side of the board. n lines follow giving the rectangles where the rooks can be placed as described above. The i-th line among them gives xliylixri, and yri. The input file is terminated with the integer `0' on a line by itself.

    Your task is to find such a placing of rooks that the above conditions are satisfied and then output n lines each giving the position of a rook in order in which their rectangles appeared in the input. If there are multiple solutions, any one will do. Output IMPOSSIBLE if there is no such placing of the rooks.

    Sample input

    8
    1 1 2 2
    5 7 8 8
    2 2 5 5
    2 2 5 5
    6 3 8 6
    6 3 8 5
    6 3 8 8
    3 6 7 8
    8
    1 1 2 2
    5 7 8 8
    2 2 5 5
    2 2 5 5
    6 3 8 6
    6 3 8 5
    6 3 8 8
    3 6 7 8
    0
    

    Output for sample input

    1 1
    5 8
    2 4
    4 2
    7 3
    8 5
    6 6
    3 7
    1 1
    5 8
    2 4
    4 2
    7 3
    8 5
    6 6
    3 7
    
    题意:给定n辆车可以放在棋盘的区间,求能否放满且所有车不受攻击。
    思路:贪心+优先队列,把行列分开去贪心。。
    代码:
    #include <stdio.h>
    #include <string.h>
    #include <queue>
    #include <algorithm>
    using namespace std;
    
    const int N = 5005;
    
    int n;
    struct Car {
        int xl, xr, yl, yr;
        int px, py, id;
    } car[N];
    
    bool cmp1(Car a, Car b) {
        if (a.yl != b.yl)
    	return a.yl < b.yl;
        return a.yr < b.yr;
    }
    
    bool cmp2(Car a, Car b) {
        if (a.xl != b.xl)
    	return a.xl < b.xl;
        return a.xr < b.xr;
    }
    
    bool cmp3(Car a, Car b) {
        return a.id < b.id;
    }
    
    void init() {
        for (int i = 0; i < n; i ++) {
    	scanf("%d%d%d%d", &car[i].xl, &car[i].yl, &car[i].xr, &car[i].yr);
    	car[i].id = i;
        }
    }
    
    bool solve() {
        sort(car, car + n, cmp1);
        for (int i = 1; i <= n; i ++) {
    	if (car[i - 1].yl > i || car[i - 1].yr < i) return false;
    	car[i - 1].py = i;
        }
        sort(car, car + n, cmp2);
        for (int i = 1; i <= n; i ++) {
    	if (car[i - 1].xl > i || car[i - 1].xr < i) return false;
    	car[i - 1].px = i;
        }
        sort(car, car + n, cmp3);
        return true;
    }
    
    int main() {
        while (~scanf("%d", &n) && n) {
    	init();
    	if (solve()) {
    	    for (int i = 0; i < n; i ++)
    		printf("%d %d
    ", car[i].px, car[i].py);
    	}
    	else printf("IMPOSSIBLE
    ");
        }
        return 0;
    }


  • 相关阅读:
    利用jmSlip写一个移动端顶部日历选择组件
    JS写的排序算法演示
    jmSlip WEB前端滑屏组件
    如何:使用 Visual Basic 编写基于 Unity3D 的计算器
    验证 .NET 4.6 的 SIMD 硬件加速支持的重要性
    VB 2015 的 闭包(Closure)
    VS "15" 预览 5 中 VB 15 新增的功能
    演练:使用Xamarin.Forms开发产品介绍性质的应用(VB版)
    UWP游戏防内存修改器的方法
    优化win2d实现的萤火虫粒子效果
  • 原文地址:https://www.cnblogs.com/fuhaots2009/p/3483333.html
Copyright © 2011-2022 走看看