제출 #837239

#제출 시각아이디문제언어결과실행 시간메모리
837239Sohsoh84수천개의 섬 (IOI22_islands)C++17
컴파일 에러
0 ms0 KiB
#include "islands.h" #include <bits/stdc++.h> using namespace std; const int MAXN = 400 + 10; int deg[MAXN], n, m, W[MAXN][MAXN]; vector<int> f[MAXN]; variant<bool, vector<int>> find_journey(int n_, int m_, vector<int> U_, vector<int> V_) { n = n_; m = m_; for (int i = 0; i < m; i++) { deg[U_[i]]++, f[U_[i]].push_back(i); W[U_[i]][V_[i]] = i; } if (n == 2) { if (deg[0] >= 2 && deg[1] >= 1) return vector<int>({f[0][0], f[1][0], f[0][1], f[0][0], f[1][0], f[0][1]}); return false; } return {W[0][1], W[1][2], W[2][0], W[0][2], W[2][1], W[1][0], W[0][1], W[1][2], W[2][0], W[0][2], W[2][1], W[1][0]}; }

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

islands.cpp: In function 'std::variant<bool, std::vector<int, std::allocator<int> > > find_journey(int, int, std::vector<int>, std::vector<int>)':
islands.cpp:24:116: error: could not convert '{W[0][1], W[1][2], W[2][0], W[0][2], W[2][1], W[1][0], W[0][1], W[1][2], W[2][0], W[0][2], W[2][1], W[1][0]}' from '<brace-enclosed initializer list>' to 'std::variant<bool, std::vector<int, std::allocator<int> > >'
   24 |  return {W[0][1], W[1][2], W[2][0], W[0][2], W[2][1], W[1][0], W[0][1], W[1][2], W[2][0], W[0][2], W[2][1], W[1][0]};
      |                                                                                                                    ^
      |                                                                                                                    |
      |                                                                                                                    <brace-enclosed initializer list>