結果
問題 | No.1865 Make Cycle |
ユーザー | 👑 emthrm |
提出日時 | 2022-03-04 21:28:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 162 ms / 3,000 ms |
コード長 | 2,165 bytes |
コンパイル時間 | 2,185 ms |
コンパイル使用メモリ | 208,808 KB |
実行使用メモリ | 8,568 KB |
最終ジャッジ日時 | 2024-07-18 19:19:41 |
合計ジャッジ時間 | 5,149 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 110 ms
6,760 KB |
testcase_01 | AC | 63 ms
6,080 KB |
testcase_02 | AC | 126 ms
7,048 KB |
testcase_03 | AC | 31 ms
6,400 KB |
testcase_04 | AC | 80 ms
7,124 KB |
testcase_05 | AC | 123 ms
7,412 KB |
testcase_06 | AC | 110 ms
7,092 KB |
testcase_07 | AC | 93 ms
6,820 KB |
testcase_08 | AC | 113 ms
7,776 KB |
testcase_09 | AC | 114 ms
7,356 KB |
testcase_10 | AC | 118 ms
7,452 KB |
testcase_11 | AC | 110 ms
7,516 KB |
testcase_12 | AC | 87 ms
6,604 KB |
testcase_13 | AC | 99 ms
6,908 KB |
testcase_14 | AC | 74 ms
6,524 KB |
testcase_15 | AC | 130 ms
7,328 KB |
testcase_16 | AC | 134 ms
7,804 KB |
testcase_17 | AC | 115 ms
6,780 KB |
testcase_18 | AC | 119 ms
7,572 KB |
testcase_19 | AC | 162 ms
8,568 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() using ll = long long; constexpr int INF = 0x3f3f3f3f; constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL; constexpr double EPS = 1e-8; constexpr int MOD = 1000000007; // constexpr int MOD = 998244353; constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1}; constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1}; constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1}; template <typename T, typename U> inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; } template <typename T, typename U> inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; } struct IOSetup { IOSetup() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << fixed << setprecision(20); } } iosetup; std::vector<int> detect_directed_cycle( const std::vector<std::vector<int>>& graph) { const int n = graph.size(); std::vector<int> is_visited(n, 0), cycle; const std::function<bool(int)> dfs = [&graph, &is_visited, &cycle, &dfs](const int ver) -> bool { is_visited[ver] = 1; cycle.emplace_back(ver); for (const int e : graph[ver]) { if (is_visited[e] == 1) { cycle.erase(cycle.begin(), std::find(cycle.begin(), cycle.end(), e)); cycle.emplace_back(e); return true; } else if (is_visited[e] == 0) { if (dfs(e)) return true; } } cycle.pop_back(); is_visited[ver] = 2; return false; }; for (int i = 0; i < n; ++i) { if (is_visited[i] == 0 && dfs(i)) break; } return cycle; } int main() { int n, q; cin >> n >> q; vector<int> a(q), b(q); REP(i, q) cin >> a[i] >> b[i], --a[i], --b[i]; int lb = -1, ub = q; while (ub - lb > 1) { const int mid = (lb + ub) / 2; vector<vector<int>> graph(n); REP(i, mid + 1) graph[a[i]].emplace_back(b[i]); (detect_directed_cycle(graph).empty() ? lb : ub) = mid; } cout << (ub == q ? -1 : ub + 1) << '\n'; return 0; }