Here you will find solutions of many problems on spoj. If you want solution of some problem which is not listed in blog or have doubt regarding any spoj problem (which i have solved) or any programming concept (data structure) you can mail me @ raj.nishant360@gmail.com

And my humble request to you all that don't copy the code only try to understand the logic and algorithm behind the code. I have started this because if you tried as hard as you can and still can't find any solution to the problem then you can refer to this.
You can read my answer how to start competitive programming CLICK HERE

Sunday, August 17, 2014

BUGLIFE-A Bug’s Lifeu

A Bug’s Life

Given below code is for BUGLIFE spoj or A Bug life spoj.

This question is simple implementation of BFS.


#include <bits/stdc++.h>
using namespace std;
int main()
{
    int t,k=0;
    scanf("%d",&t);
    while (t--)
    {
        k++;
        int n,m,flag=0;
        scanf("%d %d",&n,&m);
        vector<int> graph[n+1];
        for (int i=0; i<m; i++)
        {
            int a,b;
            scanf("%d %d",&a,&b);
            graph[a].push_back(b);
            graph[b].push_back(a);
        }
        int *list=(int*)calloc(n+1,sizeof(int));
        //memset(list,2,sizeof(list));
        for (int i=0; i<=n; i++)
            list[i]=2;
        int *mark=(int *)calloc(n+1,sizeof(int));
        for (int i=1; i<=n; i++)
        {
            if (mark[i]==0)
            {
                queue<int> q;
                q.push(i);
                list[i]=1;
                while (q.size()!=0)
                {
                    int temp=q.front();
                    for (int j=0; j<graph[temp].size(); j++)
                    {
                        if (list[graph[temp][j]]==2)
                            list[graph[temp][j]]=!list[temp];
                        else if (list[graph[temp][j]]==list[temp])
                        {
                            flag=1;
                            break;
                        }
                        if (mark[graph[temp][j]]==0)
                            q.push(graph[temp][j]);
                    }
                    q.pop();
                    mark[temp]=1;
                    if (flag==1)
                        break;
                }
            }
            if (flag==1)
                break;
        }
        /*for (int i=0; i<=n; i++)
            cout<<list[i]<<" ";
        cout<<endl;*/
        printf("Scenario #%d:\n",k);
        if (flag==1)
            printf("Suspicious bugs found!\n");
        else
            printf("No suspicious bugs found!\n");
    }
    return 0;
}


No comments:

Post a Comment

Your comment is valuable to us