Submission #431453

#TimeUsernameProblemLanguageResultExecution timeMemory
431453MOUF_MAHMALATConnecting Supertrees (IOI20_supertrees)C++14
0 / 100
1 ms224 KiB
#include "supertrees.h"
#include<bits/stdc++.h>
using namespace std;
typedef int ll;
vector<vector<ll> >ans,v,w;
vector<pair<ll,ll> >op;
ll n,p1[1009],p2[1009],id[1009];
ll gp1(ll z)
{
    if(p1[z]==z)
        return z;
    return p1[z]=gp1(p1[z]);
}
ll gp2(ll z)
{
    if(p2[z]==z)
        return z;
    return p2[z]=gp2(p2[z]);
}
void mrg1(ll x,ll y)
{
    x=gp1(x),y=gp1(y);
    if(x==y)
        return;
    if(v[y].size()>v[x].size())
        swap(x,y);
    for(auto z:v[y])
        v[x].push_back(z);
}
void mrg2(ll x,ll y)
{
    x=gp2(x),y=gp2(y);
    if(x==y)
        return;
    if(w[y].size()>w[x].size())
        swap(x,y);
    for(auto z:w[y])
        w[x].push_back(z);
}
int construct(vector<vector<int> > pp)
{
    n=pp.size();
    v.resize(n);
    w.resize(n);

    for(ll i=0; i<n; i++)
        v[i].resize(n);

    for(ll i=0; i<n; i++)
        p1[i]=p2[i]=i,w[i].push_back(i),v[i]=w[i];

    for(ll i=0; i<n; i++)
        for(ll j=0; j<n; j++)
        {
            if(i==j)
                continue;
            if(pp[i][j]==3)
                return 0;
            if(pp[i][j]==1)
                mrg1(i,j);
            else
                mrg2(i,j);
        }
    for(ll i=0; i<n; i++)
    {
        if(p1[i]==i)
            for(ll j=0; j<v[i].size()-1; j++)
                op.push_back({v[i][j],v[i][j+1]});
        if(p2[i]==i)
        {
            if(w[i].size()<3)
                return 0;
            for(ll j=0; j<w[i].size()-1; j++)
                op.push_back({w[i][j],w[i][j+1]});
            op.push_back({w[i][0],w[i].back()});
        }
    }
    for(ll i=0; i<n; i++)
        for(ll j=0; j<n; j++)
        {
            if(pp[i][j]!=0)
                continue;
            ll x=gp1(x),y=gp1(y);
            if(x==y)
                return 0;
            x=gp2(x),y=gp2(y);
            if(x==y)
                return 0;
        }
    for(auto z:op)
        v[z.first][z.second]=v[z.second][z.first]=1;
    build(v);
    return 1;
}

Compilation message (stderr)

supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:67:26: warning: comparison of integer expressions of different signedness: 'll' {aka 'int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   67 |             for(ll j=0; j<v[i].size()-1; j++)
      |                         ~^~~~~~~~~~~~~~
supertrees.cpp:73:26: warning: comparison of integer expressions of different signedness: 'll' {aka 'int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   73 |             for(ll j=0; j<w[i].size()-1; j++)
      |                         ~^~~~~~~~~~~~~~
supertrees.cpp:12:17: warning: 'y' may be used uninitialized in this function [-Wmaybe-uninitialized]
   12 |     return p1[z]=gp1(p1[z]);
      |            ~~~~~^~~~~~~~~~~
supertrees.cpp:83:25: note: 'y' was declared here
   83 |             ll x=gp1(x),y=gp1(y);
      |                         ^
supertrees.cpp:12:17: warning: 'x' may be used uninitialized in this function [-Wmaybe-uninitialized]
   12 |     return p1[z]=gp1(p1[z]);
      |            ~~~~~^~~~~~~~~~~
supertrees.cpp:83:16: note: 'x' was declared here
   83 |             ll x=gp1(x),y=gp1(y);
      |                ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...