結果
問題 | No.1865 Make Cycle |
ユーザー | yudedako |
提出日時 | 2022-03-16 00:13:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 233 ms / 3,000 ms |
コード長 | 1,537 bytes |
コンパイル時間 | 1,457 ms |
コンパイル使用メモリ | 144,072 KB |
実行使用メモリ | 8,036 KB |
最終ジャッジ日時 | 2024-09-22 16:46:52 |
合計ジャッジ時間 | 5,596 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 146 ms
6,812 KB |
testcase_01 | AC | 96 ms
6,944 KB |
testcase_02 | AC | 171 ms
6,944 KB |
testcase_03 | AC | 61 ms
6,940 KB |
testcase_04 | AC | 112 ms
6,944 KB |
testcase_05 | AC | 148 ms
7,032 KB |
testcase_06 | AC | 141 ms
6,944 KB |
testcase_07 | AC | 133 ms
6,940 KB |
testcase_08 | AC | 190 ms
7,384 KB |
testcase_09 | AC | 140 ms
6,968 KB |
testcase_10 | AC | 156 ms
7,200 KB |
testcase_11 | AC | 153 ms
7,000 KB |
testcase_12 | AC | 128 ms
6,944 KB |
testcase_13 | AC | 146 ms
6,944 KB |
testcase_14 | AC | 103 ms
6,944 KB |
testcase_15 | AC | 171 ms
7,068 KB |
testcase_16 | AC | 179 ms
7,420 KB |
testcase_17 | AC | 141 ms
6,940 KB |
testcase_18 | AC | 145 ms
7,120 KB |
testcase_19 | AC | 233 ms
8,036 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 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; std::vector<std::vector<int>> graph(n); for (int e = 0; e < mid; ++e) { const auto [a, b] = edges[e]; graph[a].push_back(b); } if (is_dag(graph)) { min = mid + 1; } else { max = mid; } } if (max <= q) { std::cout << max << '\n'; } else { std::cout << "-1\n"; } }