hdu 1814 2-sat 输出字典最小的和任意序列的 模板题
/*
思路:http://blog.csdn.net/string_yi/article/details/12686873
hdu 1814 输出字典序最小的2-sat
*/
#include<stdio.h>
#include<string.h>
#include<math.h>
#define N 16100
#define NN 210000
struct node {
int v,w,next;
}bian[NN*2];
int head[N],cnt,yong,color[N],ans[N];
void init() {
yong=0;
memset(head,-1,sizeof(head));
yong=0;
memset(color,0,sizeof(color));
}
void addedge(int u,int v) {
bian[yong].v=v;
bian[yong].next=head[u];
head[u]=yong++;
}
int dfs(int v)
{
if(color[v]==2)
return 0;
if(color[v]==1)
return 1;
ans[cnt++]=v;
color[v]=1;
color[v^1]=2;
for(int i=head[v];i!=-1;i=bian[i].next)
if(!dfs(bian[i].v))
return 0;
return 1;
}
void slove(int n) {
int i,j;
for(i=0;i<2*n;i++) {
if(color[i])continue;
cnt=0;
if(!dfs(i)) {
for(j=0;j<cnt;j++) {
color[ans[j]]=0;
color[ans[j]^1]=0;
}
if(!dfs(i^1)) {
printf("NIE\n");
return ;
}
}
}
for(i=0;i<2*n;i+=2) {
if(color[i]==1)
printf("%d\n",i+1);
else
printf("%d\n",i+2);
}
}
int main() {
int n,aa,bb,m;
while(scanf("%d%d",&n,&m)!=EOF) {
init();
while(m--) {
scanf("%d%d",&aa,&bb);
aa--;bb--;
addedge(aa,bb^1);
addedge(bb,aa^1);
}
slove(n);
}
return 0;}
输出任意次序<pre name="code" class="cpp">/*
hit 1917输出任意次序的2-sat
*/
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <queue>
#include <vector>
using namespace std;
const int maxn=16005;
const int maxm=200005;
int head[maxn],next[maxm],to[maxm];
int dfn[maxn],low[maxn],stk[maxn],scc[maxn],ind[maxn],vis[maxn];
int color[maxn],f[maxn];
int tot,top,cnt,id;
vector<int> dag[maxn];
void addEdage(int u,int v)
{
next[tot]=head[u],to[tot]=v,head[u]=tot++;
}
void init()
{
memset(head,-1,sizeof(head));
memset(vis,0,sizeof(vis));
memset(dfn,0,sizeof(dfn));
memset(ind,0,sizeof(ind));
memset(color,0,sizeof(color));
tot=top=cnt=id=0;
}
void tarjan(int v)
{
dfn[v]=low[v]=++cnt;
vis[v]=1;
stk[++top]=v;
for(int i=head[v];i!=-1;i=next[i])
{
int u=to[i];
if(!dfn[u])
{
tarjan(u);
low[v]=min(low[v],low[u]);
}
else if(vis[u])
low[v]=min(low[v],dfn[u]);
}
if(low[v]==dfn[v])
{
id++;
while(true)
{
int u=stk[top--];
vis[u]=0;
scc[u]=id;
if(u==v)break;
}
}
}
void buildDag(int n)
{
for(int u=0;u<2*n;u++)
for(int i=head[u];i!=-1;i=next[i])
{
int v=to[i];
if(scc[v]!=scc[u])
{
dag[scc[v]].push_back(scc[u]);
ind[scc[u]]++;
}
}
}
void topsort()
{
queue<int> q;
for(int i=1;i<=id;i++)
if(!ind[i])q.push(i);
while(!q.empty())
{
int u=q.front();
q.pop();
if(!color[u])
color[u]=1,color[f[u]]=2;
for(int i=0;i<(int)dag[u].size();i++)
{
int v=dag[u][i];
ind[v]--;
if(!ind[v])q.push(v);
}
}
}
void solve(int n)
{
for(int i=0;i<2*n;i++)
if(!dfn[i])tarjan(i);
for(int i=0;i<2*n;i+=2)
if(scc[i]==scc[i+1])
{
printf("NIE\n");
return;
}
else f[scc[i]]=scc[i+1],f[scc[i+1]]=scc[i];
for(int i=0;i<=id;i++)
dag[i].clear();
buildDag(n);
topsort();
for(int i=0;i<2*n;i+=2)
{
if(color[scc[i]]==1)
printf("%d\n",i+1);
else
printf("%d\n",i+2);
}
}
int main()
{
// freopen("in.txt","r",stdin);
int n,m;
while(~scanf("%d%d",&n,&m))
{
init();
for(int i=0,a,b;i<m;i++)
{
scanf("%d%d",&a,&b);
a--,b--;
addEdage(a,b^1);
addEdage(b,a^1);
}
solve(n);
}
return 0;
}
hdu 1814 2-sat 输出字典最小的和任意序列的 模板题的更多相关文章
- HDU 1814 Peaceful Commission
2-SAT,输出字典序最小的解,白书模板. //TwoSAT输出字典序最小的解的模板 //注意:0,1是一组,1,2是一组..... #include<cstdio> #include&l ...
- HDU 3264 区间内的最大最小之差
题目链接:http://poj.org/problem?id=3264 题目大意:在给定一堆牛的数量以及其高度的时候,每次给定一段区间,求这个区间内最高的牛和最矮的牛的高度之差为多少. 可以直接利用R ...
- HDU 2544 最短路 【Dijkstra模板题】
传送门:http://acm.hdu.edu.cn/showproblem.php?pid=2544 思路:最短路的模板题 Dijkstra 算法是一种类似于贪心的算法,步骤如下: 1.当到一个点时, ...
- Peaceful Commission HDU - 1814(输出最小的一组解)
Description 根据宪法,Byteland民主共和国的公众和平委员会应该在国会中通过立法程序来创立. 不幸的是,由于某些党派代表之间的不和睦而使得这件事存在障碍. 此委员会必须满足下列条件: ...
- HDU 1385 Minimum Transport Cost (输出字典序最小路径)【最短路】
<题目链接> 题目大意:给你一张图,有n个点,每个点都有需要缴的税,两个直接相连点之间的道路也有需要花费的费用.现在进行多次询问,给定起点和终点,输出给定起点和终点之间最少花费是多少,并且 ...
- hdu 1814 字典序最小的2sat(暴力深搜)
题意: 题意就是最基础的2sat,关系只有矛盾关系,然后二选一,关键是这个题目是输出字典序最小的那组解. 思路: 输出字典序最小,用强连通那个实现不了(起码没看到有人实现),其实我 ...
- 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 ...
- 输入n个整数,输出其中最小的k个
描述 输入n个整数,输出其中最小的k个. 详细描述: 接口说明 原型: bool GetMinK(unsignedint uiInputNum, int * pInputArray, unsigned ...
- 排序,求几个最值问题,输入n个整数,输出其中最小的k个元素。
看完两个求最大值算法之后的一些感想. 如果想直接看算法的可以跳过.但是我觉得我这些想法还是比较有用的,至少对我将来的算法设计是这样的. 算法的功能越强大,必然意味着速度慢,因为根据丛林法则,那种慢又功 ...
随机推荐
- gcc 编译 c++ 程序(转载)
单个源文件生成可执行程序 下面是一个保存在文件 helloworld.cpp 中一个简单的 C++ 程序的代码: /* helloworld.cpp */ #include <iostream& ...
- 关于k阶裴波那契序列的两种解法
在学校的anyview的时候,遇到了这个题: [题目]已知k阶裴波那契序列的定义为f(0)=0, f(1)=0, ..., f(k-2)=0, f(k-1)=1;f(n)=f(n-1)+f(n-2)+ ...
- 自定义Image HtmlHelper
public static void Image(this HtmlHelper helper, string src, string alt = null, object htmlAttribute ...
- jQueryUI 购物车拖放功能
<style type="text/css"> .basket{ border:transparent solid 2px; } img{ width:80px; he ...
- orcale 数据库的一些知识
最近学了一些Oracle数据库的知识,我想自己整理一下,以后也方便自己查阅的. orcale 数据库登录(tiger) 1. sql plus 登录 用户名: sys 口令: 主机字符串:orcl a ...
- opencv4android移植到系统app
最近在尝试使用opencv4android实现投影仪的自动对焦功能,在AndroidStudio后需要将功能移到系统工程编译成系统app,仅以此文记录下移植过程中遇到的问题. 首先去opencv官网下 ...
- CAS介绍
1.概述 单点登录(Single Sign On),简称为 SSO,是目前比较流行的企业业务整合的解决方案之一.SSO的定义是在多个应用系统中,用户只需要登录一次就可以访问所有相互信任的应用系统. 耶 ...
- ASP.Net TextBox只读时不能通过后台赋值取值
给页面的TextBox设置ReadOnly="True"时,在后台代码中不能赋值取值,下边几种方法可以避免: 1.不设置ReadOnly,设置onfocus=this.blur() ...
- [Windows Server 2008] PHP安装Memcached
★ 欢迎来到[护卫神·V课堂],网站地址:http://v.huweishen.com★ 护卫神·V课堂 是护卫神旗下专业提供服务器教学视频的网站,每周更新视频.★ 本节我们将带领大家:Windows ...
- java_tcp_简单示例
package netProgram; import java.io.DataOutputStream; import java.io.IOException; import java.net.Ser ...