博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Peaceful Commission
阅读量:6604 次
发布时间:2019-06-24

本文共 3601 字,大约阅读时间需要 12 分钟。

Peaceful Commission

Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 79 Accepted Submission(s): 38
 
Problem Description
The Public Peace Commission should be legislated in Parliament of The Democratic Republic of Byteland according to The Very Important Law. Unfortunately one of the obstacles is the fact that some deputies do not get on with some others.
The Commission has to fulfill the following conditions:
1.Each party has exactly one representative in the Commission,
2.If two deputies do not like each other, they cannot both belong to the Commission.
Each party has exactly two deputies in the Parliament. All of them are numbered from 1 to 2n. Deputies with numbers 2i-1 and 2i belong to the i-th party .
Task
Write a program, which:
1.reads from the text file SPO.IN the number of parties and the pairs of deputies that are not on friendly terms,
2.decides whether it is possible to establish the Commission, and if so, proposes the list of members,
3.writes the result in the text file SPO.OUT.
 
Input
In the first line of the text file SPO.IN there are two non-negative integers n and m. They denote respectively: the number of parties, 1 <= n <= 8000, and the number of pairs of deputies, who do not like each other, 0 <= m <=2 0000. In each of the following m lines there is written one pair of integers a and b, 1 <= a < b <= 2n, separated by a single space. It means that the deputies a and b do not like each other.
There are multiple test cases. Process to end of file.
 
Output
            The text file SPO.OUT should contain one word NIE (means NO in Polish), if the setting up of the Commission is impossible. In case when setting up of the Commission is possible the file SPO.OUT should contain n integers from the interval from 1 to 2n, written in the ascending order, indicating numbers of deputies who can form the Commission. Each of these numbers should be written in a separate line. If the Commission can be formed in various ways, your program may write mininum number sequence.
 
Sample Input
3 21 32 4
 
Sample Output
145
 
 
Source
POI 2001
 
Recommend
威士忌
 
#include
using namespace std;/*********************************************2-SAT模板*********************************************/const int maxn=8000+10;struct TwoSAT{ int n;//原始图的节点数(未翻倍) vector
G[maxn*2];//G[i]==j表示如果mark[i]=true,那么mark[j]也要=true bool mark[maxn*2];//标记 int S[maxn*2],c;//S和c用来记录一次dfs遍历的所有节点编号 void init(int n) { this->n=n; for(int i=0;i<2*n;i++) G[i].clear(); memset(mark,0,sizeof(mark)); } //加入(x,xval)或(y,yval)条件 //xval=0表示假,yval=1表示真 void add_clause(int x,int y) { G[y].push_back(x^1); G[x].push_back(y^1); } //从x执行dfs遍历,途径的所有点都标记 //如果不能标记,那么返回false bool dfs(int x) { if(mark[x^1]) return false;//这两句的位置不能调换 if(mark[x]) return true; mark[x]=true; S[c++]=x; for(int i=0;i
0) mark[S[--c]]=false; if(!dfs(i+1)) return false; } } return true; } void print() { if(!solve()) printf("NIE\n"); else { for(int i=0;i<2*n;i++)if(mark[i]) printf("%d\n",i+1); } } }sat;/*********************************************2-SAT模板*********************************************/int n,m;int a,b;int main(){ // freopen("in.txt","r",stdin); while(scanf("%d%d",&n,&m)==2){ sat.init(n); for(int i=0;i

 

转载于:https://www.cnblogs.com/wuwangchuxin0924/p/6433185.html

你可能感兴趣的文章
Centos(Yum源更改)
查看>>
冰球游戏大概的模块
查看>>
PHP中htmlentities和htmlspecialchars的区别
查看>>
Best Part
查看>>
ClassPathXMLApplicationContext上下文加载过程
查看>>
JS模拟select下拉菜单
查看>>
线性方程组迭代求解——Jacobi迭代算法(Python实现)
查看>>
vmware workstation14永久激活密钥分享
查看>>
HDU 3954 Level up(多颗线段树+lazy操作)
查看>>
hdu Stars(树状数组)
查看>>
jquery中ajax方法load get post与脚本文件如php脚本连接时,脚本怎样接受数据?
查看>>
PHP面向对象的进阶学习(抽像类、接口、final、类常量)
查看>>
三种数据库访问——Spring3.2 + Hibernate4.2
查看>>
datasg中的数据的存储结
查看>>
iOS 多线程 之 GCD(大中枢派发)(一)
查看>>
[记]SAF 中缓存服务的实现
查看>>
pstool 的使用方法
查看>>
Email - Boss's concerns
查看>>
余世维 - 有效沟通
查看>>
mysql用户与权限管理笔记
查看>>