zoukankan      html  css  js  c++  java
  • HDU1814(2-SAT)

    Peaceful Commission

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


    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

     
    染色法的2-SAT
     1 //2017-08-28
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <iostream>
     5 #include <algorithm>
     6 #include <vector>
     7 
     8 using namespace std;
     9 
    10 const int N = 20010;
    11 const int M = 100000;
    12 const int INF = 0x3f3f3f3f;
    13 int head[N], tot;
    14 struct Edge{
    15     int to, next;
    16 }edge[M];
    17 
    18 void init(){
    19     tot = 0;
    20     memset(head, -1, sizeof(head));
    21 }
    22 
    23 void add_edge(int u, int v){
    24     edge[tot].to = v;
    25     edge[tot].next = head[u];
    26     head[u] = tot++;
    27 }
    28 
    29 bool book[N];
    30 vector<int> vec;//保存dfs过程中经过的点
    31 
    32 //input: u 顶点
    33 //output: true 从u开始染色,不会出现NOT u和u染为同一种颜色; false dfs染色失败
    34 bool dfs(int u){
    35     if(book[u^1])return false;//表示染到非u,染色失败
    36     if(book[u])return true;
    37     book[u] = true;
    38     vec.push_back(u);
    39     for(int i = head[u]; i != -1; i = edge[i].next){
    40         int v = edge[i].to;
    41         if(!dfs(v))
    42           return false;
    43     }
    44     return true;
    45 }
    46 
    47 //input:n 图的顶点数
    48 //output:true 存在可行解; false 不存在可行解
    49 bool twoSAT(int n){
    50     memset(book, 0, sizeof(book));
    51     for(int u = 0; u < n; u += 2){
    52         if(book[u] || book[u^1])continue;
    53         vec.clear();
    54         if(!dfs(u)){//如果选u不成功,把dfs过程中的点都从答案中删去
    55             for(int i = 0; i < vec.size(); i++)
    56                 book[vec[i]] = 0;
    57             vec.clear();
    58             if(!dfs(u^1))return false;//如果选NOT u也不成功,说明不存在可行解
    59         }
    60     }
    61     return true;
    62 }
    63 
    64 int n, m;
    65 
    66 int main()
    67 {
    68     std::ios::sync_with_stdio(false);
    69     //freopen("inputG.txt", "r", stdin);
    70     while(cin>>n>>m){
    71         init();
    72         int u, v;
    73         while(m--){
    74             cin>>u>>v;
    75             u--; v--;
    76             add_edge(u, v^1);// u -> NOT v
    77             add_edge(v, u^1);// v -> NOT u
    78         }
    79         if(twoSAT(n<<1)){
    80             for(int i = 0; i < (n<<1); i++)//字典序输出解
    81                   if(book[i])
    82                       cout<<i+1<<endl;
    83         }else cout<<"NIE"<<endl;
    84     }
    85     return 0;
    86 }
  • 相关阅读:
    Redis 3.0.4 链表
    Redis 3.0.4 简单动态字符串(sds)
    4. 寻找两个有序数组的中位数
    redis主从同步异常
    redis重命名flushall和flushdb重启失败
    redis3.2 aof重写
    【转载】Redis 4.0 自动内存碎片整理(Active Defrag)源码分析
    [转]memcached对key和value的限制 memcached的key最大长度和Value最大长度
    LSM树(Log-Structured Merge Tree)存储引擎
    Linux使用详解(进阶篇)
  • 原文地址:https://www.cnblogs.com/Penn000/p/7445928.html
Copyright © 2011-2022 走看看