为什么我在Spoj上收到BUGLIFE的WA

时间:2019-02-14 08:03:06

标签: c++ algorithm

您好,我在SPOJ上遇到此问题https://www.spoj.com/problems/BUGLIFE/,但是我在华盛顿州,有人可以帮忙。这是我的代码。

我正在尝试使用集合来解决此问题。我听说过使用Bipartite图解决此问题的方法,但是我认为使用这种方法就足够了,除非我的方法有问题。我已经尝试了很多测试用例,但是我不知道我的代码在哪里失败。

愿意为任何人提供帮助的其他测试用例:-
http://spojtoolkit.com/history/BUGLIFE

测试用例的预期输出
:- http://spojtoolkit.com/test/BUGLIFE

样本输入:-
2
3 3
1 2
2 3
1 3
4 2
1 2
3 4

样本输出:-
方案1:
发现可疑错误!
方案2:
找不到可疑错误!

我的代码的输出与预期的输出相同。

#include <bits/stdc++.h>

using namespace std;

int main()
{
    int t;
    cin >> t;
    for(int s = 0 ; s < t ; s++ ){
        int bugs , inter; // Bugs and Interactions
        cin >> bugs >> inter;
        map<int,int> isDiscovered , male , female;
        int bug1 , bug2;
        vector<pair<int , int> > b; //stores pair of interactions
        for(int i = 0 ; i < inter ; i++){
            cin >> bug1 >> bug2;
            b.push_back(make_pair(bug1,bug2));
        }
        sort(b.begin() , b.end());

        bool ans = true;

        for(int i = 0 ; i < b.size() ; i++){
            bug1 = b[i].first;
            bug2 = b[i].second;
            //both not classified
            if(isDiscovered.find(bug1) == isDiscovered.end() && isDiscovered.find(bug2) == isDiscovered.end()){
                isDiscovered[bug1]++;
                isDiscovered[bug2]++;
                male[bug1]++;
                female[bug2]++;
            }
            //one classified
            if(isDiscovered.find(bug1) != isDiscovered.end() || isDiscovered.find(bug2) != isDiscovered.end()){
                if(isDiscovered.find(bug1) == isDiscovered.end()){
                    //bug1 does not exist
                    isDiscovered[bug1]++;
                    if(male.find(bug2) == male.end()){
                        //bug2 is female
                        male[bug1]++;
                    }
                    else{
                        //bug2 is male
                        female[bug1]++;
                    }
                }
                else{
                    //bug2 does not exist
                    isDiscovered[bug2]++;
                    if(male.find(bug1) == male.end()){
                        //bug1 is female
                        male[bug2]++;
                    }else{
                        female[bug2]++;
                    }
                }
            }
            //both classified
            if(isDiscovered.find(bug1) != isDiscovered.end() && isDiscovered.find(bug2) != isDiscovered.end()){
                if(male.find(bug1) != male.end() && male.find(bug2) != male.end()){
                    //both males
                    ans = false;
                }
                else if(female.find(bug1) != female.end() && female.find(bug2) != female.end()){
                    //both females
                    ans = false;
                }
            }
            if(ans == false){
                break;
            }
        }
        cout << "Scenario #" << s+1 << ":" << endl;
        if(ans == false){
            cout << "Suspicious bugs found!" << endl;
        }
        else{
            cout << "No suspicious bugs found!" << endl;
        }

    }
    return 0;
}

1 个答案:

答案 0 :(得分:0)

如果两个错误都是新错误,则您可以无条件地说第一个是男性,第二个是女性。不一定是这样。我们只能假设他们具有不同的性别,但是还没有理由分配性别。试试

4 2
2 1
3 4

(与情况2相同,第二对互换)。