• URAL 1997 Those are not the droids you're looking for 二分图最大匹配


    Those are not the droids you're looking for

    题目连接:

    http://acm.timus.ru/problem.aspx?space=1&num=1997

    Description

    Bar owner: Hey. We don’t serve their kind here.
    Luke: What?
    Bar owner: Your droids – they’ll have to wait outside. We don’t want them here.
    Planet Tatooine is quite far from the center of the Galaxy. It is at the intersection of many hyperspace paths and it hosts smugglers and hoods of all sorts. The pilots who visited external territories have been to the space port bar called Mos Eisley for a drink at least once.
    In this bar you can find a bunch of rascals and scoundrels from all over the Galaxy. The bar owner is ready to make drinks for any client except for, perhaps, a droid. Usually the bar has a lot of smugglers hanging out there. Each smuggler spends at least a minutes inside hoping to meet a good client. Cargo owners show up quite often as well. They usually find a dealer quickly, so they never spend more than b minutes in the bar.
    The imperial stormtroopers are searching through Tatooine for the escaped droids. The bar owner said that no droids had ever been on his territory. He also said that nobody except for smugglers and cargo owners had been in the place recently.
    Help the stormtroopers find out if the owner is a liar. For that, you are going to need the daily records from the sensor on the entrance door. The sensor keeps record of the time when somebody entered the bar or left it. The stormtroopers got the records after the bar had been closed, so there was nobody in the bar before or after the sensor took the records. You can assume that the sensor is working properly. That is, if somebody went through the bar door, the sensor made a record of that. You can also assume that the bar clients go in and out only through the door with the sensor. But the bar owner and the staff use the ‘staff only’ door.

    Input

    The first line of the input contains integers a and b (1 ≤ a, b ≤ 10 9, b + 1 < a). The second line contains integer n — the number of records from the sensor (2 ≤ n ≤ 1000). The i-th of the next n lines contains two integers ti and di (1 ≤ ti ≤ 10 9, di ∈ {0,1}) — the time of the i-th record and direction (0 — in the bar, 1 — out of the bar). The records in the input are listed in the increasing order of ti.

    Output

    If there is no doubt that somebody who was neither a smuggler nor a cargo owner visited the bar, print "Liar" on a single line. Otherwise, print a line "No reason". And in the following lines list information on all visitors of the bar. The information about a visitor consists of two space-separated numbers — the time this visitor entered the bar and the time he left the bar. If there are multiple solutions that correspond to the sensor records, print any of them.

    Sample Input

    6 3
    4
    1 0
    2 0
    5 1
    10 1

    Sample Output

    No reason
    1 10
    2 5

    Hint

    题意

    这个星球有两种人,一种人进酒吧至少玩a小时,一种人进酒吧最多玩b小时

    现在给你这个酒吧进进出出的时间,问你是否存在一组合法解

    题解:

    显然的二分图匹配,把合法的进入和退出的,连一条边

    然后去跑匈牙利就好了

    最后输出一组解

    代码

    #include <bits/stdc++.h>
    
    using namespace std;
    const int maxn = 1e3 + 15;
    int a , b , n , idx[maxn] , vis[maxn] , Left[maxn] , halft[maxn] , harht[maxn];
    vector < int > lft[maxn] , rht[maxn];
    pair < int , int > p[maxn];
    
    void Build_Graph(){
        int curlft = 0 ,  currht = 0;
    	for(int i = 1 ; i <= n ; ++ i)
    		if( p[i].second == 0 ){
    			idx[i] = ++ curlft;
    			halft[curlft] = i;
    		}
    	    else{
    	    	idx[i] = ++ currht;
    	    	harht[currht] = i;
    	    }
    	for(int i = 1 ; i <= n ; ++ i){
    		for(int j = i + 1 ; j <= n ; ++ j){
    			if(p[i].second == 0 && p[j].second == 1){
    				if( p[j].first - p[i].first >= a){
    					lft[idx[i]].push_back( idx[j] );
    					rht[idx[j]].push_back( idx[i] );
    				}
    				if( p[j].first - p[i].first <= b){
    					lft[idx[i]].push_back( idx[j] );
    					rht[idx[j]].push_back( idx[i] );
    				}
    			}
    		}
    	}
    }
    
    int dfs(int x){
    	for(auto it : lft[x]){
    		if(Left[it] == -1){
    			Left[it] = x;
    			return 1;
    		}
    		if(vis[it]) continue;
    		vis[it] = 1;
    		if(dfs(Left[it])){
    			Left[it] = x;
    			return 1;
    		}
    	}
    	return 0;
    }
    
    int main(int argc,char *argv[]){
    	int t = 0;
    	scanf("%d%d%d",&a,&b,&n);
    	for(int i = 1 ; i <= n ; ++ i){
    		scanf("%d%d",&p[i].first,&p[i].second);
    		if( p[i].second == 0 ) t ++ ;
    		else t--;
    	}
    	if( t ) printf("Liar
    ");
    	else{
    		Build_Graph();
    		int match = 0;
    		memset(Left , -1 , sizeof( Left ) );
    		for(int i = 1 ; i <= n / 2 ; ++ i){
    			memset( vis , 0 , sizeof( vis ) );
    			match += dfs( i );
    		}
    		if( match != n / 2 ) printf("Liar
    ");
    		else{
    			printf("No reason
    ");
    			for(int i = 1 ; i <= n / 2 ; ++ i){
    				int ri = harht[i] , li = halft[Left[i]];
    				printf("%d %d
    " , p[li].first , p[ri].first );
    			}
    		}
    	}
    	return 0;
    }
  • 相关阅读:
    虚拟化与KVM部署
    Jenkins部署及使用
    Tomcat及LAMT架构搭建
    版本控制与Gitlab配置
    Cobbler介绍及搭载
    MYSQL集群配置
    HAProxy——配置与实例
    LVS——配置实例
    Linux——集群
    关于IntellIJ IDEA 2016.2.4新建项目的Java Enterprise没有显示问题
  • 原文地址:https://www.cnblogs.com/qscqesze/p/5370315.html
Copyright © 2020-2023  润新知