제출 #300209

#제출 시각아이디문제언어결과실행 시간메모리
300209madlogicConnecting Supertrees (IOI20_supertrees)C++17
0 / 100
1 ms384 KiB
#include "supertrees.h" #include <bits/stdc++.h> using namespace std; int construct(std::vector<std::vector<int>> p) { int n = p.size(); vector<vector<int>> adj(n); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) if (p[i][j] == 2) { adj[i].push_back(j); adj[j].push_back(i); } } vector<int> cc; vector<bool> vis(n); function<void(int)> dfs = [&](int u) { vis[u] = true; cc.push_back(u); for (int to : adj[u]) if (!vis[to]) { dfs(to); } }; vector<vector<int>> answer(n, vector<int>(n)); for (int i = 0; i < n; i++) { if (!vis[i]) { dfs(i); int m = cc.size(); for (int j = 0; j < m; j++) { for (int k = 0; k < m; k++) if (p[cc[j]][cc[k]] != 2) { return 0; } } for (int j = 0; j < m - 1; j++) { answer[cc[j]][cc[j + 1]] = answer[cc[j + 1]][cc[j]] = 1; } answer[cc[0]][cc[m - 1]] = answer[cc[m - 1]][cc[0]] = 1; cc.clear(); } } for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) if (p[i][j] == 1 && !answer[i][j]) answer[i][j] = 1; for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) if (p[i][j] == 0 && answer[i][j]) return 0; build(answer); 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...