結果
問題 | No.1865 Make Cycle |
ユーザー | yudedako |
提出日時 | 2022-03-16 00:12:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 169 ms / 3,000 ms |
コード長 | 1,615 bytes |
コンパイル時間 | 1,550 ms |
コンパイル使用メモリ | 144,132 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-09-22 16:46:14 |
合計ジャッジ時間 | 4,938 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 114 ms
6,812 KB |
testcase_01 | AC | 76 ms
6,944 KB |
testcase_02 | AC | 123 ms
6,944 KB |
testcase_03 | AC | 60 ms
6,940 KB |
testcase_04 | AC | 85 ms
6,944 KB |
testcase_05 | AC | 84 ms
7,040 KB |
testcase_06 | AC | 95 ms
6,944 KB |
testcase_07 | AC | 96 ms
6,940 KB |
testcase_08 | AC | 131 ms
7,552 KB |
testcase_09 | AC | 83 ms
6,940 KB |
testcase_10 | AC | 118 ms
7,168 KB |
testcase_11 | AC | 113 ms
7,040 KB |
testcase_12 | AC | 99 ms
6,940 KB |
testcase_13 | AC | 114 ms
6,944 KB |
testcase_14 | AC | 83 ms
6,940 KB |
testcase_15 | AC | 123 ms
7,168 KB |
testcase_16 | AC | 130 ms
7,424 KB |
testcase_17 | AC | 81 ms
6,944 KB |
testcase_18 | AC | 85 ms
7,168 KB |
testcase_19 | AC | 169 ms
8,064 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <unordered_map> #include <unordered_set> #include <set> #include <vector> #include <numeric> #include <algorithm> #include <queue> #include <string> #include <random> #include <array> #include <climits> #include <map> #include <cassert> #include <stack> #include <iomanip> #include <cfloat> #include <bitset> #include <fstream> #include <chrono> bool is_dag(const std::vector<std::vector<int>>& graph) { const int n = graph.size(); std::vector<bool> visit(n, false), out(n, false); std::stack<int> stack; for (auto i = 0; i < n; ++i) { if (visit[i]) continue; stack.push(i); while (!stack.empty()) { const auto current = stack.top(); stack.pop(); if (current >= 0) { if (visit[current]) { if (!out[current]) return false; continue; } visit[current] = true; stack.push(-1 - current); for (const auto next : graph[current]) { stack.push(next); } } else { out[-1 - current] = true; } } } return true; } int main() { int n, q; std::cin >> n >> q; std::vector<std::pair<int, int>> edges(q); for (auto& [a, b] : edges) { std::cin >> a >> b; --a; --b; } int min = 1; int max = q + 1; while (min < max) { auto mid = (min + max) >> 1; int e = 0; std::vector<std::vector<int>> graph(n); while (e < mid && min < max) { for (; e < mid; ++e) { const auto [a, b] = edges[e]; graph[a].push_back(b); } if (is_dag(graph)) { min = mid + 1; } else { max = mid; } mid = (min + max) >> 1; } } if (max <= q) { std::cout << max << '\n'; } else { std::cout << "-1\n"; } }