Submission #1014559

#TimeUsernameProblemLanguageResultExecution timeMemory
1014559UnforgettableplConnecting Supertrees (IOI20_supertrees)C++17
96 / 100
145 ms24200 KiB
#include <bits/stdc++.h> using namespace std; void build(std::vector<std::vector<int>> b); int construct(std::vector<std::vector<int>> p) { int n = p.size(); vector<vector<vector<int>>> components; for(int i=0;i<n;i++){ int mycomponent = -1; for(int compo=0;compo<components.size();compo++){ int shouldbe = p[i][components[compo][0][0]]; shouldbe = min(shouldbe,1); if(shouldbe==1){ if(mycomponent==-1)mycomponent=compo; else return 0; } for(auto&j:components[compo]){ for(int&k:j){ if(shouldbe==0 and p[i][k]!=0)return 0; if(shouldbe==1 and p[i][k]==0)return 0; } } } if(mycomponent==-1){ components.push_back({{i}}); continue; } int mychain = -1; for(int cha=0;cha<components[mycomponent].size();cha++){ int shouldbe = p[i][components[mycomponent][cha][0]]; if(shouldbe==1){ if(mychain==-1)mychain=cha; else return 0; } for(int&j:components[mycomponent][cha]){ if(shouldbe!=p[i][j])return 0; } } if(mychain==-1)components[mycomponent].push_back({i}); else components[mycomponent][mychain].push_back(i); } vector<vector<int>> ans(n,vector<int>(n)); for(auto&i:components){ vector<int> heads; for(auto&j:i){ heads.emplace_back(j[0]); for(int k=1;k<j.size();k++){ ans[j[k-1]][j[k]]=ans[j[k]][j[k-1]]=true; } } if(heads.size()==2)return 0; if(heads.size()==1)continue; heads.emplace_back(heads.front()); for(int j=1;j<heads.size();j++){ ans[heads[j-1]][heads[j]]=ans[heads[j]][heads[j-1]]=true; } } build(ans); return 1; }

Compilation message (stderr)

supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:11:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<std::vector<int> > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   11 |         for(int compo=0;compo<components.size();compo++){
      |                         ~~~~~^~~~~~~~~~~~~~~~~~
supertrees.cpp:30:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   30 |         for(int cha=0;cha<components[mycomponent].size();cha++){
      |                       ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
supertrees.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 k=1;k<j.size();k++){
      |                         ~^~~~~~~~~
supertrees.cpp:55:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   55 |         for(int j=1;j<heads.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...