제출 #788240

#제출 시각아이디문제언어결과실행 시간메모리
788240mindiyak슈퍼트리 잇기 (IOI20_supertrees)C++14
21 / 100
239 ms22084 KiB
#include "supertrees.h" #include <vector> #include <set> #include <iostream> using namespace std; vector<int> parent(1003); int find_head(int n){ if(parent[n] == n){ return n; }return find_head(parent[n]); } int construct(std::vector<std::vector<int>> p) { int n = p.size(); set<int> heads; vector<vector<int>>ans(n,vector<int>(n,0)); for (int i = 0; i < n; i++) { parent[i] = i; } for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(i==j) continue; if(p[i][j] == 3){ return 0; }else if(p[i][j] == 1){ int lower = min(i,j); int higher = max(i,j); if(find_head(lower) != find_head(higher)){ ans[i][j] = 1; ans[j][i] = 1; parent[higher] = find_head(lower); } } } } for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(i==j) continue; if(p[i][j] == 2){ heads.insert(find_head(i)); heads.insert(find_head(j)); } } } // cout << "table travers" << endl; vector<int> header; for (int i : heads) { header.push_back(i); } int t = header.size(); // cout << t << " " << (0<(t-1)) << endl; for (int i = 0; i < (t-1); i++) { // cout << "for" << endl; ans[header[i]][header[i+1]] = 1; ans[header[i+1]][header[i]] = 1; } if(t > 2){ // cout << "comare" << endl; ans[header[0]][header[t-1]] = 1; ans[header[t-1]][header[0]] = 1; } // cout << "headers connected" << endl; for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ int i_head = find_head(i); int j_head = find_head(j); if(i==j) continue; if(p[i][j] == 0){ if(i_head == j_head){ return 0; } // if((heads.count(i_head) == 1) and (heads.count(j_head) == 1)){ // return 0; // } }else if(p[i][j] == 1){ if(i_head != j_head){ return 0; } }else if(p[i][j] == 2){ if(t < 3){ return 0; } if(i_head == j_head){ return 0; } if((heads.count(i_head) == 0) or (heads.count(j_head) == 0)){ return 0; } } } } build(ans); return 1; }
#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...