Submission #734878

# Submission time Handle Problem Language Result Execution time Memory
734878 2023-05-03T08:07:06 Z Elvin_Fritl Comparing Plants (IOI20_plants) C++17
Compilation error
0 ms 0 KB
//#include "supertrees.h"
#include <bits/stdc++.h>

using namespace std;

bool vis[1002];
int construct(vector<vector<int> > p) {
    int n = (int)p.size();
    vector<vector<int> > ans(n);
    for(int i=0;i<n;i++) ans[i].resize(n);
    for(int i=0;i<n;i++){
        for(int j=0;j<n;j++){
            if(p[i][j] == 3) return 0;
        }
    }
    for(int i=0;i<n;i++){
        if(vis[i]) continue;
        vis[i] = 1;

        vector<int> x;
        vector<vector<int> > y;
        queue<int> q;
        q.push(i);
        while(!q.empty()){
            int u = q.front();
            q.pop();
            vis[u] = 1;
            bool use = 0;
            x.push_back(u);
            vector<int> z;
            for(int v=0;v<n;v++){
                if(vis[v]) continue;
                if(p[u][v] == 0) continue;
                if(p[u][v] == 1){
                    ans[u][v] = 1;
                    ans[v][u] = 1;
                    vis[v] = 1;
                    z.push_back(v);
                }
                else if(!use){
                    use = 1;
                    q.push(v);
                }
            }
            y.push_back(z);
        }
        for(int i=0;i<y.size();i++){
            for(int j=0;j<y[i].size();j++){
                for(int k=j+1;k<y[i].size();k++){
                    if(p[y[i][j]][y[i][k]] != 1) return 0;
                }
            }
            for(int j=0;j<x.size();j++){
                if(i == j) continue;
                for(int k=0;k<y[i].size();k++){
                    if(p[x[j]][y[i][k]] != 2) return 0;
                }
            }
            for(int j=0;j<y.size();j++){
                if(i == j) continue;
                for(int a=0;a<y[i].size();a++){
                    for(int b=0;b<y[j].size();b++){
                        if(p[y[i][a]][y[j][b]] != 2) return 0;
                    }
                }
            }
        }
        for(int i=0;i<x.size();i++){
            for(int j=i+1;j<x.size();j++){
                if(p[x[i]][x[j]] != 2) return 0;
            }
        }
        if((int)x.size() == 2) return 0;
        else if((int)x.size() > 2){
            for(int i=0;i<(int)x.size()-1;i++){
                ans[x[i]][x[i+1]] = 1;
                ans[x[i+1]][x[i]] = 1;
            }
            ans[0][x[(int)x.size()-1]] = 1;
            ans[x[(int)x.size()-1]][0] = 1;
        }
    }

    build(ans);
    return 1;
}

Compilation message

plants.cpp: In function 'int construct(std::vector<std::vector<int> >)':
plants.cpp:47:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   47 |         for(int i=0;i<y.size();i++){
      |                     ~^~~~~~~~~
plants.cpp:48:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   48 |             for(int j=0;j<y[i].size();j++){
      |                         ~^~~~~~~~~~~~
plants.cpp:49:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   49 |                 for(int k=j+1;k<y[i].size();k++){
      |                               ~^~~~~~~~~~~~
plants.cpp:53:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   53 |             for(int j=0;j<x.size();j++){
      |                         ~^~~~~~~~~
plants.cpp:55:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   55 |                 for(int k=0;k<y[i].size();k++){
      |                             ~^~~~~~~~~~~~
plants.cpp:59:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   59 |             for(int j=0;j<y.size();j++){
      |                         ~^~~~~~~~~
plants.cpp:61:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   61 |                 for(int a=0;a<y[i].size();a++){
      |                             ~^~~~~~~~~~~~
plants.cpp:62:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   62 |                     for(int b=0;b<y[j].size();b++){
      |                                 ~^~~~~~~~~~~~
plants.cpp:68:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   68 |         for(int i=0;i<x.size();i++){
      |                     ~^~~~~~~~~
plants.cpp:69:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   69 |             for(int j=i+1;j<x.size();j++){
      |                           ~^~~~~~~~~
plants.cpp:84:5: error: 'build' was not declared in this scope
   84 |     build(ans);
      |     ^~~~~