Submission #1079148

#TimeUsernameProblemLanguageResultExecution timeMemory
10791487modyConnecting Supertrees (IOI20_supertrees)C++17
0 / 100
1 ms348 KiB
#include "supertrees.h" #include <bits/stdc++.h> using namespace std; 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); } vector<int> arr; vector<bool> found(n); for(int i = 0; i < n;i++){ if(p[i][i] != 1) return 0; for(int j = 0; j < n;j++){ if(p[i][j] != p[j][i]) return 0; if(p[i][j] == 2){ if(!found[i]){ arr.push_back(i); found[i] = true; } if(!found[j]){ arr.push_back(j); found[j] = true; } } } } if(arr.size()) arr.push_back(arr[0]); for(int i = 0; i < arr.size() - 1;i++){ answer[arr[i]][arr[i+1]] = answer[arr[i+1]][arr[i]] = 1; } build(answer); return 1; }

Compilation message (stderr)

supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:32:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   32 |  for(int i = 0; i < arr.size() - 1;i++){
      |                 ~~^~~~~~~~~~~~~~~~
#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...