Submission #487738

# Submission time Handle Problem Language Result Execution time Memory
487738 2021-11-16T14:04:13 Z ala2 Connecting Supertrees (IOI20_supertrees) C++14
0 / 100
12 ms 23800 KB
#include "supertrees.h"
#include <vector>
#include<iostream>
using namespace std;
int pa[1001000];
int sz[1001000];
int root(int x)
{
    while(x!=pa[x])
    {
        pa[x]=pa[pa[x]];
        x=pa[x];
    }
    return x;
}
void unit(int x,int y)
{
    x=root(x);
    y=root(y);
    if(x==y)
        return ;
    if(sz[x]>sz[y])
    {
        sz[x]+=sz[y];
        pa[y]=x;
    }
    else
    {
        sz[y]+=sz[x];
        pa[x]=y;
    }
}
vector<int>v[1001000];
int construct(vector<vector<int>> p) {
	int n = p.size();
	vector<vector<int>> answer;
	for (int i = 0; i < n; i++) {
		vector<int> row;
		row.resize(n);
		answer.push_back(row);
	}
	for(int i=0;i<n;i++)
    {
        pa[i]=i;
        sz[i]=1;
    } int bb=0;
    for(int i=0;i<n;i++)
    {
        for(int j=0;j<n;j++)
        {
            if(p[i][j]==1)
            {
                //cout<<"                "<<i<<" " <<j<<"  "<<root(i)<<"  "<<root(j)<<" ";
                unit(i,j);
               // cout<<root(i)<<endl;

            }
        }
    }
    for(int i=0;i<n;i++)
    {
        for(int j=0;j<n;j++)
        {
           if(p[i][j]==1&&root(i)!=root(j))
            bb=1;
           if(p[i][j]==0&&root(i)==root(j))
            bb=1;
        }
    }
    for(int i=0;i<n;i++)
    {
      //  cout<<"      "<<i<<"  "<<root(i)<<endl;
        v[root(i)].push_back(i);
    }
    for(int i=0;i<n;i++)
    {
        if(i!=root(i))
            continue;
        if(v[i].size()==1)
            bb=1;
      //      cout<<v[i].size()<<endl;
        for(int j=0;j<v[i].size()-1;j++)
        {

            int x=v[i][j];
            int y=v[i][j+1];
    //        cout<<x<<" ";
          //  if(j==v[i].size()-1)
            //    cout<<y<<" ";
            answer[x][y]=1;
            answer[y][x]=1;
        }
        cout<<endl;
    }
    if(bb)
        return 0;
	build(answer);
	return 1;
}

Compilation message

supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:82:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   82 |         for(int j=0;j<v[i].size()-1;j++)
      |                     ~^~~~~~~~~~~~~~
supertrees.cpp:95:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   95 |     if(bb)
      |     ^~
supertrees.cpp:97:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   97 |  build(answer);
      |  ^~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 23756 KB Answer gives possible 0 while actual possible 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 23756 KB Answer gives possible 0 while actual possible 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 12 ms 23704 KB Answer gives possible 0 while actual possible 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 12 ms 23800 KB Answer gives possible 0 while actual possible 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 23756 KB Answer gives possible 0 while actual possible 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 23756 KB Answer gives possible 0 while actual possible 1
2 Halted 0 ms 0 KB -