제출 #637270

#제출 시각아이디문제언어결과실행 시간메모리
637270Fidan수천개의 섬 (IOI22_islands)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
#include <variant>
#include "islands.h"
using namespace std;
typedef int ll;
vector<int> find_journey(int n, int m, vector<int> u, vector<int> v){
	if(n==2){
		ll a=-1, b=-1, c=-1;
		for(ll i=0; i<m; i++){
			if(u[i]==0){
				if(a==-1) a=i;
				else b=i;
			}
			else c=i;
		}
		if(b==-1 || c==-1) return {0};
		return vector<int>({a, c, b, a, c, b});
	}
	else if(m==n*(n-1)){
		ll a=-1, b=-1, c=-1, d=-1, e=-1, f=-1;
		for(ll i=0; i<m; i++){
			if(u[i]==0 && v[i]==1) a=i;
			if(u[i]==1 && v[i]==0) b=i;
			if(u[i]==1 && v[i]==2) c=i;
			if(u[i]==2 && v[i]==1) d=i;
			if(u[i]==2 && v[i]==0) e=i;
			if(u[i]==0 && v[i]==2) f=i;
		}
		return vector<int>({a, c, e, f, d, b, e, c, a, b, d, f});
	}
	else{
		vector<vector<pair<ll, ll>>> g(n);
		for(ll i=0; i<m; i++){
			g[u[i]].push_back({v[i], i});
		}
		if(g[0].size()==2){
			ll a=g[0][0].second, b=g[0][1].second;
			ll a1, b1;
			if(a%2==0) a1=a+1;
			else a1=a-1;
			if(b%2==0) b1=b+1;
			else b1=b-1;
			return vector<int>({a, a1, b, b1, a1, a, b1, b});
		}
		else{
			bool f=false;
			for(ll i=0; i<n; i++){
				if(g[i].size()>=3) f=true;
			}
			if(!f) return {0};
			vector<ll> res1, res;
			res1.push_back(g[0][0].second);
			ll l=g[0][0].first, k=0;
			while(g[l].size()<3){
				if(g[l][0].first==k){
					res1.push_back(g[l][1].second);
					res.push_back(g[l][1].second);
					k=l;
					l=g[l][1].first;
				}
				else{
					res1.push_back(g[l][0].second);
					res.push_back(g[l][0].second);
					k=l;
					l=g[l][0].first;
				}
			}
			ll a=-1, b=-1;
			for(ll i=0; i<g[l].size(); i++){
				if(g[l][i].first!=k){
					if(a==-1) a=g[l][i].second;
					else b=g[l][i].second;
				}
			}
			ll a1, b1;
			if(a%2==0) a1=a+1;
			else a1=a-1;
			if(b%2==0) b1=b+1;
			else b1=b-1;
			res.push_back(a);
			res.push_back(a1);
			res.push_back(b);
			res.push_back(b1);
			res.push_back(a1);
			res.push_back(a);
			res.push_back(b1);
			res.push_back(b);
			reverse(res1.begin(), res1.end());
			for(ll asdf:res1) res.push_back(asdf);
			return res;
		}
	}
}

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

islands.cpp:6:13: error: ambiguating new declaration of 'std::vector<int> find_journey(int, int, std::vector<int>, std::vector<int>)'
    6 | vector<int> find_journey(int n, int m, vector<int> u, vector<int> v){
      |             ^~~~~~~~~~~~
In file included from islands.cpp:3:
islands.h:4:38: note: old declaration 'std::variant<bool, std::vector<int, std::allocator<int> > > find_journey(int, int, std::vector<int>, std::vector<int>)'
    4 | std::variant<bool, std::vector<int>> find_journey(
      |                                      ^~~~~~~~~~~~
islands.cpp: In function 'std::vector<int> find_journey(int, int, std::vector<int>, std::vector<int>)':
islands.cpp:69:17: warning: comparison of integer expressions of different signedness: 'll' {aka 'int'} and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   69 |    for(ll i=0; i<g[l].size(); i++){
      |                ~^~~~~~~~~~~~