답안 #632292

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
632292 2022-08-19T20:01:51 Z Cyber_Wolf CEOI16_icc (CEOI16_icc) C++14
컴파일 오류
0 ms 0 KB
//CEOI '16 P1
//Problem: ICC
//Link: https://oj.uz/problem/view/CEOI16_icc

#include <bits/stdc++.h>
#include "icc.h"

using namespace std;

#define lg long long

const lg MOD = 1e9+7, N = 101, M = 1e7+1, SZ = 1e3+1;

lg par[N], compSize[N];
vector<lg> child[N];

lg getParent(lg src)
{
	if(src == par[src])	return src;
	return par[src] = getParent(par[src]);
}

void join(lg u, lg v)
{
	u = getParent(u), v = getParent(v);
	if(u == v)	return;
	if(compSize[u] > compSize[v])	swap(u, v);
	par[u] = v;
	for(auto it : child[u])	child[v].push_back(it);
	compSize[v] += compSize[u];
}


void run(int n)
{
	for(int i = 1; i <= n; i++)	par[i] = i, compSize[i] = 1, child[i].push_back(i);
	lg x = n-1;
	while(x--)
	{
		vector<lg> parents;
		for(int i = 1; i <= n; i++)	if(par[i] == i)	parents.push_back(i);
		bool cur = true;
		for(int i = 1; i <= n && cur; i++)
		{
			for(int j = i+1; j <= n && cur; j++)
			{
				bool flag = query(1, 1, {i}, {j});
				if(flag)
				{
					join(i, j);
					setRoad(i, j);
					cur = false;
					break;
				}
			}
		}
	}
}

Compilation message

icc.cpp: In function 'void run(int)':
icc.cpp:47:37: error: invalid conversion from 'int' to 'int*' [-fpermissive]
   47 |     bool flag = query(1, 1, {i}, {j});
      |                                     ^
      |                                     |
      |                                     int
In file included from icc.cpp:6:
icc.h:10:30: note:   initializing argument 3 of 'int query(int, int, int*, int*)'
   10 | int query(int a, int b, int *A, int *B);
      |                         ~~~~~^
icc.cpp:47:37: error: invalid conversion from 'int' to 'int*' [-fpermissive]
   47 |     bool flag = query(1, 1, {i}, {j});
      |                                     ^
      |                                     |
      |                                     int
In file included from icc.cpp:6:
icc.h:10:38: note:   initializing argument 4 of 'int query(int, int, int*, int*)'
   10 | int query(int a, int b, int *A, int *B);
      |                                 ~~~~~^