zoukankan      html  css  js  c++  java
  • POJ 3207 Ikki's Story IV

    Ikki's Story IV - Panda's Trick
    Time Limit: 1000MS   Memory Limit: 131072K
    Total Submissions: 6691   Accepted: 2496

    Description

    liympanda, one of Ikki’s friend, likes playing games with Ikki. Today after minesweeping with Ikki and winning so many times, he is tired of such easy games and wants to play another game with Ikki.

    liympanda has a magic circle and he puts it on a plane, there are n points on its boundary in circular border: 0, 1, 2, …, n − 1. Evil panda claims that he is connecting m pairs of points. To connect two points, liympanda either places the link entirely inside the circle or entirely outside the circle. Now liympanda tells Ikki no two links touch inside/outside the circle, except on the boundary. He wants Ikki to figure out whether this is possible…

    Despaired at the minesweeping game just played, Ikki is totally at a loss, so he decides to write a program to help him.

    Input

    The input contains exactly one test case.

    In the test case there will be a line consisting of of two integers: n and m (n ≤ 1,000, m ≤ 500). The following m lines each contain two integers ai and bi, which denote the endpoints of the ith wire. Every point will have at most one link.

    Output

    Output a line, either “panda is telling the truth...” or “the evil panda is lying again”.

    Sample Input

    4 2
    0 1
    3 2

    Sample Output

    panda is telling the truth...

    Source

     
     
    题意:平面上,一个圆,圆的边上按顺时针放着n个点。现在要连m条边,
    比如a,b,那么a到b可以从圆的内部连接,也可以从圆的外部连接。
    给你的信息中,每个点最多只会连接的一条边。问能不能连接这m条边,
    使这些边都不相交。
    
    思路:对于每条Link,要么在圆外,要么在圆内,且不可同时满足,
    只能两者取一,判断这M条Link是否合法,也就是M条Link不冲突,
    这就是典型的2-sat问题了。 将每条Link i 看做一个点,如果Link在圆内,
    则选做i ,如果在圆外, 则选做i'。对于两条线(i,j) ,如果i,j不能同时
    在圆内,也就可以推出两者不能同时在圆外,这个证明很容易,读者可
    以自行证明。i, j不能同时在圆内,则有边(i, j') 、(j ,i')、(i',j)、(j' ,i)
    (这是由2-sat的构图方式决定的,具体可以看《由对称性解2-SAT问题》
     这篇论文)。建图完了之后,本题就是判断2-sat问题是否有解,
     先求原图的强连通分量,并缩点,(这里我们称:(i,i')属于同一组),
     判断是否存在(i,i')属于同一组,若存在,则不可能,若不存在则可能。



    #include<iostream>
    #include<cstdio>
    #include<cstring>
    
    using namespace std;
    
    const int VM=1010;
    const int EM=1000010;
    
    struct Edge{
        int to,nxt;
    }edge[EM<<1];
    
    int n,m,cnt,dep,top,atype,head[VM];
    int dfn[VM],low[VM],vis[VM],belong[VM];
    int stack[VM];
    
    void Init(){
        cnt=0,  atype=0,    dep=0,  top=0;
        memset(head,-1,sizeof(head));
        memset(vis,0,sizeof(vis));
        memset(low,0,sizeof(low));
        memset(dfn,0,sizeof(dfn));
        memset(belong,0,sizeof(belong));
    }
    
    void addedge(int cu,int cv){
        edge[cnt].to=cv;    edge[cnt].nxt=head[cu];     head[cu]=cnt++;
    }
    
    void Tarjan(int u){
        dfn[u]=low[u]=++dep;
        stack[top++]=u;
        vis[u]=1;
        for(int i=head[u];i!=-1;i=edge[i].nxt){
            int v=edge[i].to;
            if(!dfn[v]){
                Tarjan(v);
                low[u]=min(low[u],low[v]);
            }else if(vis[v])
                low[u]=min(low[u],dfn[v]);
        }
        int j;
        if(dfn[u]==low[u]){
            atype++;
            do{
                j=stack[--top];
                belong[j]=atype;
                vis[j]=0;
            }while(u!=j);
        }
    }
    
    void swap(int &a,int &b){
        int tmp=a;a=b;b=tmp;
    }
    
    int main(){
    
        //freopen("input.txt","r",stdin);
    
        int s[VM],e[VM];
        while(~scanf("%d%d",&n,&m)){
            Init();
            for(int i=0;i<m;i++){
                scanf("%d%d",&s[i],&e[i]);
                if(s[i]>e[i])
                    swap(s[i],e[i]);
            }
            for(int i=0;i<m;i++)
                for(int j=i+1;j<m;j++)
                    if((s[i]>s[j] && e[i]>e[j] && s[i]<e[j]) || (s[i]<s[j] && e[i]<e[j] && s[j]<e[i])){
                        addedge(i,j+m);
                        addedge(j+m,i);
                        addedge(j,i+m);
                        addedge(i+m,j);
                    }
            for(int i=0;i<m;i++)
                if(!dfn[i])
                    Tarjan(i);
            int flag=1;
            for(int i=0;i<m;i++)
                if(belong[i]==belong[i+m]){
                    flag=0;
                    break;
                }
            if(flag)
                printf("panda is telling the truth...
    ");
            else
                printf("the evil panda is lying again
    ");
        }
        return 0;
    }
  • 相关阅读:
    TortoiseGit学习系列之TortoiseGit基本操作修改提交项目(图文详解)
    TortoiseGit学习系列之TortoiseGit基本操作克隆项目(图文详解)
    TortoiseGit学习系列之Windows上本地代码如何通过TortoiserGit提交到GitHub详解(图文)
    TortoiseGit学习系列之Windows上TortoiseGit的安装详解(图文)
    TortoiseGit学习系列之TortoiseGit是什么?
    Cloudera Manager集群官方默认的各个组件开启默认顺序(图文详解)
    IntelliJ IDEA 代码字体大小的快捷键设置放大缩小(很实用)(图文详解)
    Jenkins+Ant+SVN+Jmeter实现持续集成
    jmeter+Jenkins 持续集成中发送邮件报错:MessagingException message: Exception reading response
    jmeter+Jenkins持续集成(四、定时任务和邮件通知)
  • 原文地址:https://www.cnblogs.com/jackge/p/3180009.html
Copyright © 2011-2022 走看看