답안 #1084192

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1084192 2024-09-05T15:06:04 Z nickolasarapidis 슈퍼트리 잇기 (IOI20_supertrees) C++17
0 / 100
0 ms 348 KB
#include "supertrees.h"
#include <bits/stdc++.h>
using namespace std;

int construct(vector<vector<int>> p){
	int N = p.size();

	vector<vector<int>> b(N, vector<int>(N, 0));

	for(int i = 0; i < N; i++){
		for(int j = 0; j < N; j++){
			for(int k = 0; k < N; k++){
				if(p[i][j] > 0 and p[j][k] > 0){
					if(p[i][k] > 0){
						b[i][k] = 1;
						b[k][i] = 1;
						b[i][j] = 1;
						b[j][i] = 1;
					}
					else{
						return 0;
					}
				}
			}
		}
	}

	build(b);

	return 1;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -