Practice Round APAC test Problem A. Bad Horse 2-sat

Problem A. Bad Horse

This contest is open for practice. You can try every problem as many times as you like, though we won't keep track of which problems you solve. Read the Quick-Start Guide to get started.
Small input 1
12 points
Small input 2
21 points

Problem

As the leader of the Evil League of Evil, Bad Horse has a lot of problems to deal with. Most recently, there have been far too many arguments and far too much backstabbing in the League, so much so that Bad Horse has decided to split the league into two departments in order to separate troublesome members. Being the Thoroughbred of Sin, Bad Horse isn't about to spend his valuable time figuring out how to split the League members by himself. That what he's got you -- his loyal henchman -- for.

Input

The first line of the input gives the number of test cases, TT test cases follow. Each test case starts with a positive integer M on a line by itself -- the number of troublesome pairs of League members. The next M lines each contain a pair of names, separated by a single space.

Output

For each test case, output one line containing "Case #x: y", where x is the case number (starting from 1) and y is either "Yes" or "No", depending on whether the League members mentioned in the input can be split into two groups with neither of the groups containing a troublesome pair.

Limits

1 ≤ T ≤ 100.
Each member name will consist of only letters and the underscore character.
Names are case-sensitive.
No pair will appear more than once in the same test case.
Each pair will contain two distinct League members.

Small dataset

1 ≤ M ≤ 10.

Large dataset

1 ≤ M ≤ 100.

Sample

2 -sat直接i j^1 j^1 i建边即可
#define N 2100
#define M 100005
#define maxn 205
#define MOD 1000000000000000007
int st[N],sn,n2,T,num,n;
char s1[N],s2[N];
vector<int> p[N];
map<string,int> mymap;
bool vis[N];
bool DFS(int x){
    if(vis[x^1]) return false;
    if(vis[x]) return true;
    vis[x] = true;
    st[sn++] = x;
    FI(p[x].size()){
        if(!DFS(p[x][i])) return false;
    }
    return true;
}
bool sat_2(){
    fill(vis,false);
    for(int i = 0;i<n2;i++){
        if(!vis[i] ){
           sn = 0;
           if(!DFS(i)){
                FJ(sn) vis[st[j]] = false;
                sn = 0;
                if(!DFS(i^1))
                return false;
           }
        }
    }
    return true;
}
void add_edge(int a,int b){
    //printf("%d %d\n",a,b);
    //printf("%d %d\n",b^1,a^1);
    p[a].push_back(b);
    p[b].push_back(a);
    p[b^1].push_back(a^1);
    p[a^1].push_back(b^1);
}
int main()
{
    freopen("A-small-2-attempt0.in", "r", stdin);
    freopen("A-small-2-attempt0.out", "w", stdout);
     while(S(T)!=EOF)
    {
        for(int tcase = 1;tcase<=T;tcase++){
            S(n);
            mymap.clear();
            FI(N) p[i].clear();
            num = 0;
            FI(n){
                SS(s1);SS(s2);
                int x1,x2;
                if(mymap.count(s1)) {
                    x1 = mymap[s1];
                }
                else {
                    mymap[s1] = num;
                    x1 = num;
                    num +=2;
                }
                if(mymap.count(s2)) {
                    x2 = mymap[s2];
                }
                else {
                    mymap[s2] = num;
                    x2 = num;
                    num +=2;
                }
                add_edge(x1,x2^1);
            }
            n2 = num;
            if(sat_2()){
                printf("Case #%d: Yes\n",tcase);
            }
            else {
                printf("Case #%d: No\n",tcase);
            }
        }
    }

    fclose(stdin);
    fclose(stdout);
    return 0;
}



Input 
 

Output 
 
2
1
Dead_Bowie Fake_Thomas_Jefferson
3
Dead_Bowie Fake_Thomas_Jefferson
Fake_Thomas_Jefferson Fury_Leika
Fury_Leika Dead_Bowie
Case #1: Yes
Case #2: No

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值