# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
447358 | Habib_Assoev | 슈퍼트리 잇기 (IOI20_supertrees) | C++14 | 258 ms | 38188 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "supertrees.h"
#include<bits/stdc++.h>
#define in freopen ("measurement.in", "r", stdin);
#define out freopen("measurement.out", "w", stdout);
#define ll long long
//#define int long long
#define pf push_front
#define fi first
#define se second
#define speed ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0)
using namespace std ;
long long const N = 1e2 + 7;
long long N1 = 1e9 + 7;
const int MOD = 1e9 + 7;
vector < int > used( 1007 );
vector < int > used1( 1007 );
vector < int > used2( 1007 );
vector < vector < int > > k( 1007 );
vector < int > cz;
void dfs( int u ){
used[u] = 1;
//cout << "DFS" << ' ' << u << endl;
cz.push_back( u );
for( int i = 0 ; i < k[u].size() ; i ++ ){
ll tr = k[u][i];
if( used[tr] == 0 ){
dfs( tr );
}
}
}
int construct(std::vector<std::vector<int>> p) {
int n = p.size();
std::vector<std::vector<int>> answer;
for( int i = 0 ; i < n ; i ++ ){
for( int j = 0 ; j < n ; j ++ ){
if( p[i][j] == 1 ){
used2[i] = 1, used2[j] = 1;
k[j].push_back( i );
k[i].push_back( j );
}
}
}
ll a[n][n];
for( int i = 0 ; i < n ; i ++ ){
for( int j = 0 ; j < n ; j ++ ){
a[i][j] = 0;
}
}
ll check = 0;
for( int i = 0 ; i < n ; i ++ ){
if( used2[i] == 1 && used[i] == 0 ){
if( cz.size() > 0 ){
for( int j = 1 ; j < cz.size() ; j ++ ){
a[cz[j]][cz[j-1]] = 1;
a[cz[j-1]][cz[j]] = 1;
}
for( int j = 0 ; j < cz.size(); j ++ ){
for( int h = 0 ; h < cz.size(); h ++ ){
if( j != h ){
// cout << cz[j] << ' ' << cz[h] << endl;
if( p[cz[j]][cz[h]] != a[cz[h]][cz[j]] ){
check = 1;
break;
}
}
}
}
cz.clear();
}
dfs( i );
}
}
if( cz.size() > 0 ){
for( int j = 1 ; j < cz.size() ; j ++ ){
a[cz[j]][cz[j-1]] = 1;
a[cz[j-1]][cz[j]] = 1;
}
for( int j = 0 ; j < cz.size(); j ++ ){
for( int h = 0 ; h < cz.size(); h ++ ){
if( j != h ){
//cout << cz[j] << ' ' << cz[h] << endl;
//cout << p[cz[j]][cz[h]] << endl;
if( p[cz[j]][cz[h]] != 1 ){
check = 1;
break;
}
}
}
}
cz.clear();
}
for (int i = 0; i < n; i++) {
std::vector<int> row;
row.resize(n);
for( int j = 0 ; j < n ; j ++ ){
row[j] = a[i][j];
}
answer.push_back(row);
}
if( check == 0 ){
build(answer);
return 1;
}else{
return 0;
}
}
/*
4
0 0 0 1
0 0 1 0
0 1 0 0
1 0 0 0
*/
컴파일 시 표준 에러 (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... |