Peaceful Commission

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3556    Accepted Submission(s):
1173

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 2
1 3
2 4
 
Sample Output
1
4
5
 
Source
 
 
/*
最小字典序
直接暴力枚举DFS,首先将所有的点都置为未染色,然后从第一个点开始DFS染色,我们先尝试将i染
成1(答案中的颜色),将~i染成2,然后dfs i的所有后继并染色,如果对于后继j没有染色,那么将j然
后为1,~j染成2。如果后继j已经被染成2,则说明不能选则i,如果j已经染成1,则说明可以。
那么这些后继就可以被选择。如果选择i的时候失败了,那么必定要选择~i,如果也失败,则说明无解。否则
按次序选取下一个未被染色的点。时间复杂度O(nm)。
*/
#include<iostream>
#include<cstdio>
#include<cstring>
#define maxn 16001 using namespace std;
int col[maxn],head[maxn],ans[maxn];
int a,b,n,m,num,tot,cnt;
struct node
{
int u,v,next;
}e[maxn<<]; inline void add(int u,int v)
{
e[++num].u=u;
e[num].v=v;
e[num].next=head[u];
head[u]=num;
} bool dfs(int u)
{
if(col[u]==) return true;
if(col[u]==) return false;
col[u]=;col[u^]=;ans[cnt++]=u;
for(int i=head[u];i;i=e[i].next)
{
int v=e[i].v;
if(!dfs(v)) return false;
}
return true;
} bool solve()
{
memset(col,,sizeof col);
for(int i=;i<n;i++)
{
if(col[i]) continue;
cnt=;
if(!dfs(i))
{
for(int j=;j<cnt;j++)
{
col[ans[j]]=;
col[ans[j]^]=;
}
if(!dfs(i^))return false;
}
}
return true;
} int main()
{
while(scanf("%d%d",&n,&m)!=EOF)
{
n<<=;num=;
memset(head,,sizeof head);
while(m--)
{
scanf("%d%d",&a,&b);
a--;b--;
add(a,b^);add(b,a^);
}
if(solve())
{
for (int i=;i<n;i++)
if(col[i]==)
printf("%d\n",i+);
}
else printf("NIE\n");
}
return ;
}

hdu1814Peaceful Commission(2-SAT)的更多相关文章

  1. 【2-SAT(最小字典序/暴力染色)】HDU1814-Peaceful Commission

    [题目大意] 和平委员会每个党派有2个人,只能派出其中1个,其中有一些人之间互相讨厌不能同时派出.求出派遣方案,如果有多种方案输出字典序最小的方案. [思路] 最小字典序只能用暴力染色.初始时均没有染 ...

  2. HDU1814Peaceful Commission求2-sa最小字典序

    #include <iostream> #include <cstdio> #include <vector> #include <cstring> # ...

  3. 初涉2-SAT

    2-SAT:有趣的图论模型 什么是2-SAT SAT是适定性(Satisfiability)问题的简称.之所以研究2-sat是因为当k>2时,k-sat问题已经被证明是NPC的了. 2-sat问 ...

  4. Peaceful Commission

    Peaceful Commission Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others ...

  5. 多边形碰撞 -- SAT方法

    检测凸多边形碰撞的一种简单的方法是SAT(Separating Axis Theorem),即分离轴定理. 原理:将多边形投影到一条向量上,看这两个多边形的投影是否重叠.如果不重叠,则认为这两个多边形 ...

  6. POJ 3678 Katu Puzzle(2 - SAT) - from lanshui_Yang

    Description Katu Puzzle is presented as a directed graph G(V, E) with each edge e(a, b) labeled by a ...

  7. hdu 1814 Peaceful Commission (2-sat 输出字典序最小的路径)

    Peaceful Commission Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Oth ...

  8. HDU 1814 Peaceful Commission / HIT 1917 Peaceful Commission /CJOJ 1288 和平委员会(2-sat模板题)

    HDU 1814 Peaceful Commission / HIT 1917 Peaceful Commission /CJOJ 1288 和平委员会(2-sat模板题) Description T ...

  9. hdu1814 Peaceful Commission

    hdu1814 Peaceful Commission 题意:2-sat裸题,打印字典序最小的 我写了三个 染色做法,正解 scc做法,不管字典序 scc做法,错误的字典序贪心 #include &l ...

随机推荐

  1. 洛谷——P2252 取石子游戏

    P2252 取石子游戏 有两堆石子,数量任意,可以不同.游戏开始由两个人轮流取石子.游戏规定,每次有两种不同的取法,一是可以在任意的一堆中取走任意多的石子:二是可以在两堆中同时取走相同数量的石子.最后 ...

  2. 【汇总】java中数组的声明、初始化及遍历

    java中数组用来存储固定大小的同类型元素 一维数组: 1.数组的声明: //声明一维数组,推荐用第一种 int[] a; int b[]; 2.数据的初始化:有三种初始化方式 (1).静态初始化 / ...

  3. eclipse 中为 java 项目生成 API 文档、JavaDoc

    当我们的项目很大,编写了很多代码的时候,就需要生成一个标准的 API 文档,让后续的开发人员,或者合作者可以清晰的了解您方法的使用. 1.点击 eclipse 的 Project 菜单,选择 Gene ...

  4. zabbix3.4调用钉钉报警通知(超详细)

     一.备注: zabbix调用钉钉接口报警通知有两种情况: 1.通知到个人钉 2.通知到钉钉群 本文主要介绍zabbix调用钉钉接口通知到钉钉个人的方式 二.zabbix3.4调用钉钉接口报警通知到个 ...

  5. 以位为单位存储标志-共用体-union

    一.程序的结构如下: typedef union _KEYST     {         struct         {             uint8 Key1_Flag :1;//表示第0 ...

  6. getContextPath和getRealPath的区别-----其实主要区别就是相对路径和绝对路径

    getContextPath和getRealPath的区别 其实主要区别就是相对路径和绝对路径 https://blog.csdn.net/zsmj_2011/article/details/4121 ...

  7. 51. spring boot属性文件之多环境配置【从零开始学Spring Boot】

    原本这个章节是要介绍<log4j多环境不同日志级别的控制的>但是没有这篇文章做基础的话,学习起来还是有点难度的,所以我们先一起了解下spring boot属性文件之多环境配置,当然文章中也 ...

  8. apt-get使用指南

    最近频繁使用apt-cache show(查看软件包详细信息)与apt-cache search(搜寻具体软件包确切名称)命令,深感方便与功能强大.现将一些apt-get相关命令做一个简单的收集: a ...

  9. S - Arc of Dream 矩阵快速幂

    An Arc of Dream is a curve defined by following function: where a 0 = A0 a i = a i-1*AX+AY b 0 = B0  ...

  10. 关于Git的简单使用

    新电脑git push一直出问题,到现在也没有解决,但是一些git的命令还是有用的,就先记下来吧.(下图就是没解决的报错) 一.上传本地项目到git 1.初始化git git init 2.配置用户名 ...