zoukankan      html  css  js  c++  java
  • 洛谷 P3496 [POI2010]GIL-Guilds

    题目描述

    King Byteasar faces a serious matter.

    Two competing trade organisations, The Tailors Guild and The Sewers Guild asked, at the same time, for permissions to open their offices in each town of the kingdom.

    There are  towns in Byteotia.

    Some of them are connected with bidirectional roads.

    Each of the guilds postulate that every town should:

    have an office of the guild, or be directly connected to another town that does.

    The king, however, suspects foul play. He fears that if there is just a single town holding the offices of both guilds, it could lead to a clothing cartel.

    For this reason he asks your help.

    给一张无向图,要求你用黑白给点染色,且满足对于任意一个黑点,至少有一个白点和他相邻;对于任意一个白点,至少有一个黑点与他相邻,问能否成功

    输入输出格式

    输入格式:

     

    Two integers,  and  (), are given in the first line of the standard input. These denote the number of towns and roads in Byteotia, respectively.

    The towns are numbered from  to .

    Then the roads are given as follows: the input line no.  describes the -th road; it holds the numbers  and  (), denoting that the ![](http://main.edu.…

     

    输出格式:

     

    Your program should print out one word in the first line of the standard output:

    TAK (yes in Polish) - if the offices can be placed in towns according to these rules, or NIE (no in Polish) - in the opposite case.

    If the answers is TAK, then the following  lines should give an exemplary placement of the offices. Thus the line no. should hold:

    the letter K if there should be an office of The Tailors Guild in the town , or the letter S if there should be an office of The Sewers Guild in the town , or the letter N if there should be no office in the town .

     

    输入输出样例

    输入样例#1: 复制
    7 8
    1 2
    3 4
    5 4
    6 4
    7 4
    5 6
    5 7
    6 7
    输出样例#1: 复制
    TAK
    K
    S
    K
    S
    K
    K
    N
    思路:可以得到一个结论,只要没有度数为0的点就一定可以。
    然后宽搜染色就可以了。
    #include<queue>
    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    #define MAXN 500010
    using namespace std;
    queue<int>que;
    int n,m,tot;
    int fa[MAXN],col[MAXN],into[MAXN];
    int to[MAXN*2],net[MAXN*2],head[MAXN];
    int find(int x){
        if(fa[x]==x)    return fa[x];
        else return fa[x]=find(fa[x]);
    }
    void add(int u,int v){
        to[++tot]=v;net[tot]=head[u];head[u]=tot;
    }
    int main(){
        scanf("%d%d",&n,&m);
        for(int i=1;i<=n;i++)    fa[i]=i;
        for(int i=1;i<=m;i++){
            int x,y;scanf("%d%d",&x,&y);
            add(x,y);add(y,x);into[x]++;into[y]++;
            int dx=find(x);int dy=find(y);fa[dy]=dx;
        }
        for(int i=1;i<=n;i++)
            if(into[i]==0){ printf("NIE
    ");return 0;}
        memset(col,-1,sizeof(col));
        for(int i=1;i<=n;i++)
            if(fa[i]==i){ que.push(i);col[i]=1; }
        while(!que.empty()){
            int now=que.front();
            que.pop();
            for(int i=head[now];i;i=net[i])
                if(col[to[i]]==-1){
                    col[to[i]]=(col[now]==1?0:1);
                    que.push(to[i]);
                }
        }
        printf("TAK
    ");
        for(int i=1;i<=n;i++)
            if(col[i]==1)    printf("K
    ");
            else    printf("S
    ");
    }
     
    细雨斜风作晓寒。淡烟疏柳媚晴滩。入淮清洛渐漫漫。 雪沫乳花浮午盏,蓼茸蒿笋试春盘。人间有味是清欢。
  • 相关阅读:
    twisted 初体验
    移动互联网实战--wifi定位和架构
    SpringCloud之Eureka集群
    com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server
    SpringCloud服务注册与服务发现之Eureka
    SpringCloud简介
    Java实时监控类库Metrics
    InfluxDB Java入门
    InfluxDB配置文件详解
    InfluxDB概念和基本操作
  • 原文地址:https://www.cnblogs.com/cangT-Tlan/p/8746172.html
Copyright © 2011-2022 走看看