# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
316007 | gurkot | 슈퍼트리 잇기 (IOI20_supertrees) | C++14 | 243 ms | 22264 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include "supertrees.h"
#include <vector>
using namespace std;
int tree[1501],comp[1501],mas[1501],mas2[1501];
int n,ntree,ncomp;
int construct(std::vector<std::vector<int>> p) {
n = p.size();
std::vector<std::vector<int>> answer;
for (int i = 0; i < n; i++) {
std::vector<int> row;
row.resize(n);
answer.push_back(row);
}
//cout<<"ok1: let find trees"<<endl;
for (int i=0; i<n;i++)
if (tree[i]==0){
++ntree;
for (int j=0;j<n;j++) {
if(p[i][j] == 3) return 0;
if (i!=j && p[i][j]==1){
if (tree[j]>0) return 0;
tree[j]=ntree;
answer[i][j]=answer[j][i]=1;
}
}//J
}//i
//cout<<"ok2: let find connected components"<<endl;
for (int i=0; i<n;i++)
if (comp[i]==0){
ncomp++;
int s=i,a=i,k=1,cnt=0;
for (int j=0;j<n;j++)
if (i!=j && p[i][j]>0){
mas[++cnt]=j;
for (int ic=1;ic<cnt;ic++)
if (p[mas[ic]] [j]==0 || p[j] [mas[ic]]==0) return 0;
if (comp[j]>0) return 0;
comp[j]=ncomp;
if (tree[j]==0) {
mas2[++k]=j;
for (int ic=1;ic<k;ic++)
if (p[mas2[ic]] [j]<2 || p[j] [mas2[ic]]<2) return 0;
answer[a][j]=answer[j][a]=1;
a=j;
}
}//j
if (k==2) return 0;
if (k>2) answer[a][s]=answer[s][a]=1;
}//i
build(answer);
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... |