제출 #696365

#제출 시각아이디문제언어결과실행 시간메모리
696365T0p_Connecting Supertrees (IOI20_supertrees)C++14
컴파일 에러
0 ms0 KiB
// Subtask 2

#include "supertrees.h"
#include <bits/stdc++.h>
using namespace std;

const int N = 1000;

bool visited[N];

int fp(int u) { return pa[u] = (u == pa[u]) ? u : fp(pa[u]); }

int construct(vector<vector<int>> p)
{
	int n = p.size();
	vector<vector<int>> ans(n, vector<int> (n, 0));
	
	vector<int> connectedList(n)
	for (int i=0 ; i<n ; i++) for (int j=0 ; j<n ; j++) if (p[i][j] == 1) connectedList[i].push_back(j);

	for (int i=0 ; i<n ; i++) for (int j=0 ; j<n ; j++) if (p[i][j] == 1 && connectedList[i] != connectedList[j]) return 0;

	for (int i=0 ; i<n ; i++) if (!visited[i])
	{
		visited[i] = true;

		for (int j=i+1 ; j<n ; j++) if (p[i][j] == 1)
		{
			visited[j] = true;
			ans[i][j] = ans[j][i] = 1;
		}
	}
	

	build(ans);
	return 1;
}

컴파일 시 표준 에러 (stderr) 메시지

supertrees.cpp: In function 'int fp(int)':
supertrees.cpp:11:24: error: 'pa' was not declared in this scope
   11 | int fp(int u) { return pa[u] = (u == pa[u]) ? u : fp(pa[u]); }
      |                        ^~
supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:19:2: error: expected ',' or ';' before 'for'
   19 |  for (int i=0 ; i<n ; i++) for (int j=0 ; j<n ; j++) if (p[i][j] == 1) connectedList[i].push_back(j);
      |  ^~~
supertrees.cpp:19:17: error: 'i' was not declared in this scope
   19 |  for (int i=0 ; i<n ; i++) for (int j=0 ; j<n ; j++) if (p[i][j] == 1) connectedList[i].push_back(j);
      |                 ^
supertrees.cpp:19:43: error: 'j' was not declared in this scope
   19 |  for (int i=0 ; i<n ; i++) for (int j=0 ; j<n ; j++) if (p[i][j] == 1) connectedList[i].push_back(j);
      |                                           ^