제출 #837315

#제출 시각아이디문제언어결과실행 시간메모리
837315Sohsoh84수천개의 섬 (IOI22_islands)C++17
컴파일 에러
0 ms0 KiB
#include "islands.h" #include <bits/stdc++.h> using namespace std; const int MAXN = 1e6 + 10; #define all(x) (x).begin(),(x).end() int n, m, from[MAXN], to[MAXN], level[MAXN]; vector<int> ans, adj[MAXN]; bool edge_vis[MAXN], flag = false; stack<int> st; inline int f(int ind, int v) { return from[ind] ^ to[ind] ^ v; } inline int find_edge(int ind, int u) { return from[ind] == u ? ind : ind + 1; } void dfs(int v) { if (flag) return; for (int ind : adj[v]) { if (flag) return; if (edge_vis[ind]) continue; if (level[to[ind]]) { flag = true; int r = level[v] - level[to[ind]]; vector<int> cyc; while (r--) cyc.push_back(st.top()), st.pop(), ans.pop_back(); reverse(all(cyc)); cyc.push_back(ind); for (int e : cyc) ans.push_back(e); for (int e : cyc) ans.push_back(e ^ 1); reverse(all(cyc)); for (int e : cyc) ans.push_back(e); for (int e : cyc) ans.push_back(e ^ 1); flag = true; return; } level[to[ind]] = level[v] + 1; edge_vis[ind] = true; st.push(ind); ans.push_back(ind); dfs(to[ind]); } } 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 += 2) { from[i] = U_[i], to[i] = V_[i]; adj[from[i]].push_back(i); } level[0] = 1; dfs(0); if (!flag) return false; sleep(1000); while (!st.empty()) ans.push_back(st.top()), st.pop(); return ans; }

컴파일 시 표준 에러 (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:67:2: error: 'sleep' was not declared in this scope
   67 |  sleep(1000);
      |  ^~~~~