제출 #303863

#제출 시각아이디문제언어결과실행 시간메모리
303863kjain_1810슈퍼트리 잇기 (IOI20_supertrees)C++17
컴파일 에러
0 ms0 KiB
#include "supertrees.h" #include <vector> #define pb push_back const int N = 1005; using namespace std; int taken[N], compcnt, n; vector<int>comp[N]; bool checkValid(vector<vector<int>>p) { for(int a = 0; a < compcnt; a++) for(int b = 0; b < comp[a].size(); b++) for(int c = 0; c < comp[a].size(); c++) if(!p[comp[a][b]][comp[a][c]] || p[a][b] == 3) return false; for(int a = 0; a < n; a++) for(int b = 0; b < n; b++) if(p[a][b] && taken[a] != taken[b]) return false; return true; } int gettype(vector<int>component, vector<vector<int>>p) { int mini = 3; int maxi = 0; for(auto a:component) for(auto b:component) { mini=min(mini, p[a][b]); maxi=max(maxi, p[a][b]); } if(mini == maxi) { if(mini == 1) return 0; else return 1; } return 2; } int construct(vector<vector<int>> p) { 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 a = 0; a < n; a++){ if(taken[a]) continue; for(int b = 0; b < n; b++) { if(p[a][b]) { comp[compcnt].pb(b); taken[b] = compcnt; } compcnt++; } if(!checkValid(p)) return 0; for(auto component:comp) { int x = gettype(component, p); if(x == 1) { for(int a = 1; a < component.size(); a++) answer[component[a]][component[a - 1]] = answer[component[a - 1]][component[a]] = 1; } else if(x == 2) { for(int a = 1; a < component.size(); a++) answer[component[a]][component[a - 1]] = answer[component[a - 1]][component[a]] = 1; answer[component[component.size() - 1]][0] = answer[component[0]][component[component.size() - 1]] = 1; } else { } } build(answer); return 1; }

컴파일 시 표준 에러 (stderr) 메시지

supertrees.cpp: In function 'bool checkValid(std::vector<std::vector<int> >)':
supertrees.cpp:15:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   15 |   for(int b = 0; b < comp[a].size(); b++)
      |                  ~~^~~~~~~~~~~~~~~~
supertrees.cpp:16:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   16 |    for(int c = 0; c < comp[a].size(); c++)
      |                   ~~^~~~~~~~~~~~~~~~
supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:72:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   72 |    for(int a = 1; a < component.size(); a++)
      |                   ~~^~~~~~~~~~~~~~~~~~
supertrees.cpp:77:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   77 |    for(int a = 1; a < component.size(); a++)
      |                   ~~^~~~~~~~~~~~~~~~~~
supertrees.cpp:88:1: error: expected '}' at end of input
   88 | }
      | ^
supertrees.cpp:46:38: note: to match this '{'
   46 | int construct(vector<vector<int>> p) {
      |                                      ^
supertrees.cpp:48:22: warning: control reaches end of non-void function [-Wreturn-type]
   48 |  vector<vector<int>> answer;
      |                      ^~~~~~