# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
587758 | almothana05 | 슈퍼트리 잇기 (IOI20_supertrees) | C++14 | 230 ms | 24244 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "supertrees.h"
#include <vector>
#include<bits/stdc++.h>
using namespace std;
vector<vector<int> >erg;
vector<int>cmp[2000] , comp;
int vis[2000] , visi[2000] , f[2000];
set<int> s;
int construct(vector<vector<int>> p) {
int menge = p.size() , pl = 1;
for(int i = 0 ; i < menge ; i++){
erg.push_back(vector<int>() );
for(int j = 0 ; j < menge ; j++){
erg[i].push_back(0);
}
}
for(int i = 0 ; i < menge ; i++){
p[i][i] = 1;
}
for(int i = 0 ; i < menge ; i++){
if(vis[i] == 0){
vis[i] = pl;
for(int j = 0 ; j < menge ; j++){
if(p[i][j] == 1){
cmp[pl].push_back(j);
vis[j] = pl;
}
}
int fl = 1;
for(int j = 0 ; j < menge ; j++){
for(int k = 0 ; k < cmp[pl].size() ; k++){
if(p[i][j] != p[cmp[pl][k]][j]){
fl = 0;
break;
}
}
}
for(int j = 0 ; j < cmp[pl].size() - 1 ; j++){
erg[cmp[pl][j]][cmp[pl][j + 1]] = 1;
erg[cmp[pl][j + 1]][cmp[pl][j]] = 1;
}
if(fl == 0){
return 0;
}
f[pl] = i;
// cout << pl << " " << i << "\n";
pl++;
}
}
int c = 1;
for(int i = 1 ; i < pl; i++){
s.clear();
comp.clear();
int kan = f[i];
if(visi[i] == 0){
visi[i] = c;
for(int j = 0 ; j < menge ; j++){
if(p[kan][j] == 2){
// cout << f[vis[j]] << ' ' << i << "\n";
if(s.count(vis[j]) == 0){
assert(i != vis[j]);
s.insert(vis[j]);
comp.push_back(f[vis[j]]);
visi[vis[j]] = c;
}
}
}
int fl = 1;
// for(int j = 0 ; j < menge ; j++){
// for(int k = 0 ; k < comp.size() ; k++){
// // if( (p[kan][j] == 2 && p[comp[k]][j] != 2) || (p[kan][j] != 2 && p[comp[k]][j] == 2) ){
// // fl = 0;
// // break;
// // }
// // if((p[kan][j] == 0 && p[comp[k]][j] != 0) || (p[kan][j] != 0 && p[comp[k]][j] == 0)){
// // fl = 0;
// // break;
// // }
// }
// }
if(fl == 0){
return 0;
}
comp.push_back(kan);
// assert(comp.size() > 2);
for(int j = 0 ; j < comp.size() ; j++){
// cout << comp[j] << ' ';
if(j != (j + 1) % comp.size()){
erg[comp[j]][comp[(j + 1) % comp.size()]] = 1;
erg[comp[(j + 1) % comp.size()] ][comp[j]] = 1;
// assert()
}
}
// cout << "\n";
}
}
build(erg);
return 1;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |