Submission #362701

#TimeUsernameProblemLanguageResultExecution timeMemory
362701sean617Connecting Supertrees (IOI20_supertrees)C++17
11 / 100
299 ms24172 KiB
#include "supertrees.h" #include <vector> #define N 1005 using namespace std; int n, bu[N]; bool v[N], co[N][N]; vector<int> gu[N], cy, cy2, ans; vector<std::vector<int> > answer; int f(int p) { if (bu[p] == p) return p; else return bu[p] = f(bu[p]); } void f_co(int p, int q) { co[p][q] = co[q][p] = 1; } int construct(std::vector<std::vector<int> > p) { int i, j, t, t1, t2, la; n = p.size(); for (i = 0; i < n; i++) bu[i] = i; for (i = 0; i < n; i++) { for (j = i + 1; j < n; j++) { if (p[i][j]== 0) continue; if (p[i][j] == 3) return 0; t1 = f(i); t2 = f(j); if (t1 != t2) bu[t1] = t2; } } for (i =0; i < n; i++) { t = f(i); gu[t].push_back(i); } for (i = 0; i < n; i++) { t = f(i); if (gu[t].size() == 1) continue; for (j = 0; j < gu[t].size(); j++) { if (gu[t][j] == i) continue; if (p[i][gu[t][j]] != 2) break; } if (j == gu[t].size()) { v[i] = 1; cy.push_back(i); } } for (i = 0; i < n; i++) { if (v[i]) continue; t = f(i); if (gu[t].size() == 1) continue; for (j = 0; j < gu[t].size(); j++) { if (gu[t][j] == i) continue; if (p[i][gu[t][j]] == 1 && v[gu[t][j]]) break; } if (j == gu[t].size()) { v[i] = 1; cy.push_back(i); cy2.push_back(i); } } int sz = cy.size(); if (sz >= 2) { for (i = 0; i < sz; i++) { f_co(cy[i], cy[(i + 1) % sz]); } } for (i = 0; i < cy2.size(); i++) { la = t = cy2[i]; t2 = f(t); for (j = 0; j < gu[t2].size(); j++) { if (gu[t2][j] != t && p[t][gu[t2][j]] == 1) { f_co(la, gu[t2][j]); la = gu[t2][j]; } } } for (i = 0; i < n; i++) { ans.clear(); for (j =0; j < n; j++) { ans.push_back(co[i][j]); } answer.push_back(ans); } build(answer); return 1; }

Compilation message (stderr)

supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:38:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   38 |         for (j = 0; j < gu[t].size(); j++) {
      |                     ~~^~~~~~~~~~~~~~
supertrees.cpp:42:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   42 |         if (j == gu[t].size()) {
      |             ~~^~~~~~~~~~~~~~~
supertrees.cpp:51:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   51 |         for (j = 0; j < gu[t].size(); j++) {
      |                     ~~^~~~~~~~~~~~~~
supertrees.cpp:55:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   55 |         if (j == gu[t].size()) {
      |             ~~^~~~~~~~~~~~~~~
supertrees.cpp:67:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   67 |  for (i = 0; i < cy2.size(); i++) {
      |              ~~^~~~~~~~~~~~
supertrees.cpp:70:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   70 |         for (j = 0; j < gu[t2].size(); j++) {
      |                     ~~^~~~~~~~~~~~~~~
#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...