# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
301075 | 2020-09-17T16:15:13 Z | ElyesChaabouni | 슈퍼트리 잇기 (IOI20_supertrees) | C++14 | 282 ms | 22060 KB |
#include "supertrees.h" #include <bits/stdc++.h> using namespace std; int anc[200000], anc1[200000]; void get_anc(int x) { int cu=anc[x]; while(cu!=anc[cu]) cu=anc[cu]; anc[x]=cu; } void unite(int x, int y) { get_anc(x); get_anc(y); if(anc[x]==anc[y]) return; anc[anc[y]]=anc[x]; anc[y]=anc[x]; } void get_anc1(int x) { int cu=anc1[x]; while(cu!=anc1[cu]) cu=anc1[cu]; anc1[x]=cu; } void unite1(int x, int y) { get_anc1(x); get_anc1(y); anc1[anc1[y]]=anc1[x]; anc1[y]=anc1[x]; } int construct(std::vector<std::vector<int>> p) { int n = p.size(); std::vector<std::vector<int>> ans; for (int i = 0; i < n; i++) { std::vector<int> row; row.resize(n); ans.push_back(row); } for(int i = 0; i < n; i++) for(int j = 0; j < n; j++) ans[i][j]=0; for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { if(p[i][j]==1) unite(i, j); } } for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { get_anc(i); get_anc(j); if(((anc[i]==anc[j]) && (p[i][j]!=1)) || (anc[i]!=anc[j]) && (p[i][j]==1)) return 0; if(p[i][j]==3) return 0; } } for(int i = 0; i < n; i++) { vector<int>v; for(int j = 0; j < n; j++) { if(anc[j]==i) v.push_back(j); } for(int j = 0; j < ((int)(v.size()))-1; j++) { ans[v[j]][v[j+1]]=1; ans[v[j+1]][v[j]]=1; } } for(int i = 0; i < n; i++) anc1[i]=-1; /*for(int i = 0; i < n; i++) { bool found=0; for(int j = 0; j < n && !found; j++) { if(anc[j]==i) found=1; } if(found) anc1[i]=i; } for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { if(p[i][j]==2) { get_anc(i); get_anc(j); unite1(anc[i], anc[j]); } } } for(int i = 0; i < n; i++) { vector<int>v; for(int j = 0; j < n; j++) { if(anc1[j]==i) v.push_back(j); } for(int j = 0; j < ((int)(v.size()))-1; j++) { ans[v[j]][v[j+1]]=1; ans[v[j+1]][v[j]]=1; } if(v.size() == 2) return 0; if(v.size() > 2) { ans[v[0]][v.back()]=1; ans[v.back()][v[0]]=1; } }*/ for(int i = 0; i < n; i++) ans[i][i]=0; build(ans); return 1; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 256 KB | Output is correct |
2 | Correct | 1 ms | 288 KB | Output is correct |
3 | Correct | 0 ms | 256 KB | Output is correct |
4 | Correct | 0 ms | 256 KB | Output is correct |
5 | Correct | 1 ms | 256 KB | Output is correct |
6 | Correct | 11 ms | 1280 KB | Output is correct |
7 | Correct | 282 ms | 22060 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 256 KB | Output is correct |
2 | Correct | 1 ms | 288 KB | Output is correct |
3 | Correct | 0 ms | 256 KB | Output is correct |
4 | Correct | 0 ms | 256 KB | Output is correct |
5 | Correct | 1 ms | 256 KB | Output is correct |
6 | Correct | 11 ms | 1280 KB | Output is correct |
7 | Correct | 282 ms | 22060 KB | Output is correct |
8 | Incorrect | 0 ms | 256 KB | Answer gives possible 0 while actual possible 1 |
9 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 256 KB | Answer gives possible 0 while actual possible 1 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 256 KB | Answer gives possible 0 while actual possible 1 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 256 KB | Output is correct |
2 | Correct | 1 ms | 288 KB | Output is correct |
3 | Correct | 0 ms | 256 KB | Output is correct |
4 | Correct | 0 ms | 256 KB | Output is correct |
5 | Correct | 1 ms | 256 KB | Output is correct |
6 | Correct | 11 ms | 1280 KB | Output is correct |
7 | Correct | 282 ms | 22060 KB | Output is correct |
8 | Incorrect | 0 ms | 256 KB | Answer gives possible 0 while actual possible 1 |
9 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 256 KB | Output is correct |
2 | Correct | 1 ms | 288 KB | Output is correct |
3 | Correct | 0 ms | 256 KB | Output is correct |
4 | Correct | 0 ms | 256 KB | Output is correct |
5 | Correct | 1 ms | 256 KB | Output is correct |
6 | Correct | 11 ms | 1280 KB | Output is correct |
7 | Correct | 282 ms | 22060 KB | Output is correct |
8 | Incorrect | 0 ms | 256 KB | Answer gives possible 0 while actual possible 1 |
9 | Halted | 0 ms | 0 KB | - |