# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
733876 | 2023-05-01T11:29:22 Z | ismayil | 슈퍼트리 잇기 (IOI20_supertrees) | C++17 | 165 ms | 22032 KB |
#include "supertrees.h" #include <bits/stdc++.h> using namespace std; const int MAX = 1e3 + 3; int par[MAX]; int find(int u){ if(par[u] < 0) return u; return par[u] = find(par[u]); } bool unite(int u, int v){ u = find(u), v = find(v); if(u == v) return false; if(par[u] > par[v]) swap(u, v); par[u] += par[v]; par[v] = u; return true; } int construct(vector<vector<int>> p) { memset(par, -1, sizeof(par)); int n = p.size(); vector<vector<int>> answer(n, vector<int>(n, 0)); int mark[n] = {0}; for (int i = 0; i < n; i++){ for(int j = 0; j < n; j++){ if(p[i][j] == 1 && i != j){ answer[i][j] = answer[j][i] = 1; }else if(p[i][j] == 2){ unite(i, j); } } } for(int i = 0; i < n; i++){ if(mark[find(i)]) continue; mark[find(i)] = 1; vector<int> v; for(int j = 0; j < n; j++){ if(find(i) == find(j)){ v.push_back(j); } } if(v.size() == 1) continue; if(v.size() == 2) return 0; for(int j = 0; j < v.size() - 1; j++) answer[v[j]][v[j + 1]] = answer[v[j + 1]][v[j]] = 1; answer[v[v.size() - 1]][v[0]] = answer[v[0]][v[v.size() - 1]] = 1; } build(answer); return 1; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 252 KB | Output is correct |
3 | Incorrect | 0 ms | 212 KB | Too many ways to get from 0 to 2, should be 1 found no less than 2 |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 252 KB | Output is correct |
3 | Incorrect | 0 ms | 212 KB | Too many ways to get from 0 to 2, should be 1 found no less than 2 |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 0 ms | 212 KB | Output is correct |
6 | Correct | 0 ms | 212 KB | Output is correct |
7 | Correct | 0 ms | 212 KB | Output is correct |
8 | Correct | 8 ms | 1136 KB | Output is correct |
9 | Correct | 165 ms | 22028 KB | Output is correct |
10 | Correct | 1 ms | 212 KB | Output is correct |
11 | Correct | 0 ms | 212 KB | Output is correct |
12 | Correct | 7 ms | 1108 KB | Output is correct |
13 | Correct | 165 ms | 22032 KB | Output is correct |
14 | Incorrect | 0 ms | 212 KB | Answer gives possible 1 while actual possible 0 |
15 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Incorrect | 1 ms | 212 KB | Too many ways to get from 1 to 4, should be 1 found no less than 2 |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 252 KB | Output is correct |
3 | Incorrect | 0 ms | 212 KB | Too many ways to get from 0 to 2, should be 1 found no less than 2 |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 252 KB | Output is correct |
3 | Incorrect | 0 ms | 212 KB | Too many ways to get from 0 to 2, should be 1 found no less than 2 |
4 | Halted | 0 ms | 0 KB | - |