编译代码块的问题

时间:2015-11-07 17:42:14

标签: codeblocks

我是学生,我使用代码块(windows)来编写应用程序 但是几天前我遇到了一个问题,直到现在我都无法修复。 当我使用我的代码块构建程序时,在控制台中显示的结果与codeforces.com中的输出完全不同。这里的结果是4但是当我将它发送到codeforces时它是2并且它是正确的! 这真的是我的神经紧张,我失去了控制,我无法编写任何程序......你能相信吗......请帮助我......请帮助我。 好的,这是我的http://codeforces.com/contest/278/problem/C

的代码之一
 #include <iostream>
#include <algorithm>
#include <vector>
#include <bits/stdc++.h>
using namespace std;
const int maxn=1e7+200;
vector <int> eline[2*maxn+200];
bool visited[maxn];
void dfs(int root)

{
    visited[root]=true;
    for (int i=0; i<eline[root].size(); i++)
    {
        int a=eline[root][i];
        if(!visited[a])
        {
            dfs(a);
        }
    }
}

int main()
{
    bool err=0;
    int n,m,counter=0;
    cin>>n>>m;
    for(int i=0; i<n; i++)
    {
        int a,b;
        cin>>b;
        if(b)
        {
            err=1;
        }
        for(int j=0; j<b; j++)
        {
            cin>>a;
            a--;
            eline[i].push_back(a+maxn)``;
            eline[a+maxn].push_back(i);
        }
    }

    for(int i=0; i<n; i++)
    {
        if(!visited[i])
        {
            dfs(i);
            counter++;
        }
    }

    if(!err)
    {
        cout<<n;
    }
    else
    {


         cout<<counter-1;
        }
    }

现在针对此测试用例 8 7

0

3 1 2 3

1 1

2 5 4

2 6 7

1 3

2 7 4

1 1

我的电脑显示4但是代码显示2并且有很多类似的情况

0 个答案:

没有答案