Peaceful Commission

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2030    Accepted Submission(s): 589
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
 
题意:有n对夫妻,每对夫妻编号是2*i-1和2*i,然后给出m对矛盾关系,问从每对夫妻中挑选出一个人形成一个n的集合保证这n个人两两之间没有矛盾,若存在解则输出一组字典序最小的可行解?
分析:首先根据矛盾关系建图(不多说),然后dfs暴力枚举,距离做法:
首先把2n个点标记为无色,然后从第一个点开始枚举,对于当前点i如果已经染过颜色则继续,否则dfs改点,对于搜到的点,若是无色可先把其染成红色(表示选取改点),把对应的i^1染成蓝色(表示抛弃的点),如果搜到的点是红色,表示可行,如果搜到的点是蓝色,则表示i点不成功,然后把刚才搜到的点还原成无色,接着对其对立点i^1进行dfs,若可行,则接续枚举,否则不存在可行解,最后暴力出来的标记为红色的点即为字典序最小的可行解.
#include"stdio.h"
#include"string.h"
#include"stdlib.h"
#include"queue"
#include"algorithm"
#include"string.h"
#include"string"
#include"map"
#define inf 0x3f3f3f3f
#define M 16009
using namespace std;
struct node
{
int u,v,next;
}edge[M*20];
int t,head[M],s[M],color[M],cnt;
void init()
{
t=0;
memset(head,-1,sizeof(head));
}
void add(int u,int v)
{
edge[t].v=v;
edge[t].next=head[u];
head[u]=t++;
}
int dfs(int u)
{
if(color[u]==1)
return 1;
if(color[u]==-1)
return 0;
s[cnt++]=u;
color[u]=1;
color[u^1]=-1;
for(int i=head[u];i!=-1;i=edge[i].next)
{
int v=edge[i].v;
if(!dfs(v))
return 0;
}
return 1;
}
int psq(int n)
{
memset(color,0,sizeof(color));
for(int i=0;i<2*n;i++)
{
if(color[i])continue;
cnt=0;
if(!dfs(i))
{
for(int j=0;j<cnt;j++)
color[s[j]]=color[s[j]^1]=0;
if(!dfs(i^1))
return 0;
}
}
return 1;
}
int main()
{
int n,m,i;
while(scanf("%d%d",&n,&m)!=-1)
{
init();
for(i=1;i<=m;i++)
{
int a,b;
scanf("%d%d",&a,&b);
a--;
b--;
add(a,b^1);
add(b,a^1);
}
if(psq(n))
{
for(i=0;i<2*n;i++)
if(color[i]==1)
printf("%d\n",i+1);
}
else
printf("NIE\n");
}
}
#include"stdio.h"
#include"algorithm"
#include"string.h"
#include"iostream"
#include"queue"
#include"map"
#include"stack"
#include"cmath"
#include"vector"
#include"string"
#define M 20009
#define N 20003
#define eps 1e-7
#define mod 123456
#define inf 100000000
using namespace std;
struct node
{
int v,r;
node(){}
node(int v,int r)
{
this->v=v;
this->r=r;
}
bool operator<(const node &a)const
{
return r>a.r;
}
};
struct st
{
int u,v,next;
}edge[M*];
int t,indx,num;
int head[M],low[M],dfn[M],in[M],belong[M],fp[M],top[M],use[M],color[M],mark[M],cnt;
stack<int>q;
void init()
{
t=;
memset(head,-,sizeof(head));
}
void add(int u,int v)
{
edge[t].u=u;
edge[t].v=v;
edge[t].next=head[u];
head[u]=t++;
}
void tarjan(int u)
{
dfn[u]=low[u]=++indx;
q.push(u);
use[u]=;
for(int i=head[u];~i;i=edge[i].next)
{
int v=edge[i].v;
if(!dfn[v])
{
tarjan(v);
low[u]=min(low[u],low[v]);
}
else if(use[v])
{
low[u]=min(low[u],dfn[v]);
}
}
if(low[u]==dfn[u])
{
++num;
int v;
top[num]=inf;
do
{
v=q.top();
q.pop();
belong[v]=num;
top[num]=min(top[num],v);
use[v]=;
}while(v!=u);
}
}
int solve(int n)
{
num=indx=;
memset(dfn,,sizeof(dfn));
memset(use,,sizeof(use));
for(int i=;i<=n*;i++)
if(!dfn[i])
tarjan(i);
for(int i=;i<=n;i++)
{
if(belong[i*-]==belong[i*])
return ;
}
return ;
}
int op(int u)
{
if(u&)
return u+;
return u-;
}
int dfs(int u)
{
mark[++cnt]=u;
color[u]=;
color[op(u)]=-;
for(int i=head[u];~i;i=edge[i].next)
{
int v=edge[i].v;
if(color[v]==-)
return ;
if(color[v]==)
{
if(dfs(v))
return ;
}
}
return ;
}
int main()
{
int n,m,a,b;
while(scanf("%d%d",&n,&m)!=-)
{
init();
for(int i=;i<=m;i++)
{
scanf("%d%d",&a,&b);
if((a&)&&(b&))
{
add(a,b+);
add(b,a+);
}
else if((a&)&&!(b&))
{
add(a,b-);
add(b,a+);
}
else if(!(a&)&&(b&))
{
add(a,b+);
add(b,a-);
}
else
{
add(a,b-);
add(b,a-);
}
}
int msg=solve(n);
if(!msg)
{
printf("NIE\n");
continue;
}
memset(color,,sizeof(color));
for(int i=;i<=n*;i++)
{
if(!color[i])
{
cnt=;
int tt=dfs(i);
if(tt)
{
for(int j=;j<=cnt;j++)
color[mark[j]]=color[op(mark[j])]=;
}
}
}
for(int i=;i<=*n;i++)
{
if(color[i]==)
printf("%d\n",i);
}
}
return ;
}

2-sat按照最小字典序输出可行解(hdu1814)的更多相关文章

  1. TZOJ 5110 Pollutant Control(边数最少最小割最小字典序输出)

    描述 It's your first day in Quality Control at Merry Milk Makers, and already there's been a catastrop ...

  2. HDU1814(Peaceful Commission) 【2-SAT DFS暴力求最小字典序的模板】

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1814 题意:给出一个数n,代表有n个党派,每个党派要求派出其中一个人去参加会议,且只能派出一人.给出m ...

  3. POJ 2337 Catenyms(欧拉回(通)路:路径输出+最小字典序)

    题目链接:http://poj.org/problem?id=2337 题目大意:给你n个字符串,只有字符串首和尾相同才能连接起来.请你以最小字典序输出连接好的单词. 解题思路:跟POJ1386一个意 ...

  4. [ACM_模拟] ZJUT 1155 爱乐大街的门牌号 (规律 长为n的含k个逆序数的最小字典序)

    Description ycc 喜欢古典音乐是一个 ZJUTACM 集训队中大家都知道的事情.为了更方便地聆听音乐,最近 ycc 特意把他的家搬到了爱乐大街(德语Philharmoniker-Stra ...

  5. Catenyms POJ - 2337(单词+字典序输出路径)

    题意: 就是给出几个单词 看能否组成欧拉回路或路径  当然还是让输出组成的最小字典序的路 解析: 还是把首尾字母看成点   把单词看成边 记录边就好了 这题让我对fleury输出最小字典序又加深了一些 ...

  6. 3532: [Sdoi2014]Lis 最小字典序最小割

    3532: [Sdoi2014]Lis Time Limit: 10 Sec  Memory Limit: 512 MBSubmit: 865  Solved: 311[Submit][Status] ...

  7. HDU - 5324:Boring Class (CDQ分治&树状数组&最小字典序)

    题意:给定N个组合,每个组合有a和b,现在求最长序列,满足a不升,b不降. 思路:三位偏序,CDQ分治.   但是没想到怎么输出最小字典序,我好菜啊. 最小字典序: 我们倒序CDQ分治,ans[i]表 ...

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

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

  9. UVa 1584 Circular Sequence(环形串最小字典序)

    题意  给你一个环形串   输出它以某一位为起点顺时针得到串的最小字典序 直接模拟   每次后移一位比較字典序就可以  注意不能用strcpy(s+1,s)这样后移  strcpy复制地址不能有重叠部 ...

随机推荐

  1. 【转】C#中HttpWebRequest的用法详解

    本文实例讲述了C#中HttpWebRequest的用法.分享给大家供大家参考.具体如下: HttpWebRequest类主要利用HTTP 协议和服务器交互,通常是通过 GET 和 POST 两种方式来 ...

  2. [troubleshoot][archlinux][X] plasma(KDE) 窗口滚动刷新冻结(约延迟10s)(已解决,root cause不明,无法再次复现)

    现象: konsole,setting等plasma的系统应用反应缓慢,在滚动条滚动时,尤为明显. 触发条件: 并不是十分明确的系统滚动升级(Syu)后,产生. 现象收集: 可疑的dmesg [ :: ...

  3. 非模态对话框的PreTranslateMessage() 没有用,无法进去

    非模态对话框的的PreTranslateMessage确实进不去, 自然也无法用重载PreTranslateMessage的方法来响应键盘消息. 可以用Hook的方法来使其生效. http://bbs ...

  4. 通过宏定义判断是否引入的是framework,反之则使用双引号,实用!

    例: #if __has_include(<TestHead/TestHead.h>) #import <TestHead/TestHead.h>#else#import &q ...

  5. centos 安装 openerp

    遇到问题:近日公司提出openerp的搭建,觉得openerp里的有些模块比较适合公司,openerp的运作,估计会有利于公司系统化的管理.于是我就去了解openrp,然后来搭建这套强大的系统. 解决 ...

  6. Educational Codeforces Round 16---部分题解

    710A. King Moves 给你图中一点求出它周围有几个可达的点: 除边界之外都是8个,边界处理一下即可: #include<iostream> #include<cstdio ...

  7. HighCharts -教程+例子

    Highchart简介:   Highcharts是一款免费开源的纯javascript编写的图表库,能够很简单便捷的在Web网站或Web应用中添加交互性的图表,  Highcharts目前支持直线图 ...

  8. Java学习-009-文件名称及路径获取实例及源代码

    此文源码主要为应用 Java 获取文件名称及文件目录的源码及其测试源码.若有不足之处,敬请大神指正,不胜感激!源代码测试通过日期为:2015-2-3 00:02:27,请知悉. Java获取文件名称的 ...

  9. Win10如何开启IIS服务以及如何打开IIS管理器

    一.开启IIS服务 1.右键点击开始菜单或者使用“win+x”组合键,如然后选择“控制面板”,下如: 2.再控制面板中选择“程序”-->“启动或关闭windows功能”,在弹出的对话框中勾选如下 ...

  10. cannot open /proc/bus/usb/devices, No such file or directory

    由于kernel config中没有打开对应的配置. make menuconfig 选择: Device Drivers ---> [*] USB support ---> [*] US ...