結果

問題 No.1865 Make Cycle
ユーザー shiomusubi496shiomusubi496
提出日時 2022-02-26 23:57:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 209 ms / 3,000 ms
コード長 1,394 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 213,172 KB
実行使用メモリ 8,160 KB
最終ジャッジ日時 2024-07-16 09:02:04
合計ジャッジ時間 6,260 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
6,476 KB
testcase_01 AC 84 ms
5,948 KB
testcase_02 AC 166 ms
6,912 KB
testcase_03 AC 55 ms
6,144 KB
testcase_04 AC 102 ms
6,784 KB
testcase_05 AC 149 ms
7,024 KB
testcase_06 AC 141 ms
6,572 KB
testcase_07 AC 125 ms
6,552 KB
testcase_08 AC 152 ms
7,512 KB
testcase_09 AC 143 ms
7,100 KB
testcase_10 AC 157 ms
7,192 KB
testcase_11 AC 147 ms
6,996 KB
testcase_12 AC 121 ms
6,944 KB
testcase_13 AC 144 ms
6,940 KB
testcase_14 AC 99 ms
6,944 KB
testcase_15 AC 171 ms
7,196 KB
testcase_16 AC 177 ms
7,428 KB
testcase_17 AC 143 ms
6,944 KB
testcase_18 AC 146 ms
7,200 KB
testcase_19 AC 209 ms
8,160 KB
testcase_20 AC 2 ms
6,940 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
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

class GraphCycle {
  private:
    const vector<vector<int>>& G;
    std::vector<bool> visited, seen;
    bool result;
    bool dfs(int v) {
        if (seen[v]) return true;
        if (visited[v]) return false;
        visited[v] = seen[v] = true;
        for (const auto& e : G[v]) {
            if (dfs(e)) return true;
        }
        seen[v] = false;
        return false;
    }
    void init() {
        const int N = G.size();
        visited.assign(N, false);
        seen.assign(N, false);
        result = false;
        for (int i = 0; i < N; ++i) {
            if (dfs(i)) {
                result = true;
                break;
            }
        }
    }
  public:
    GraphCycle(const vector<vector<int>>& G) : G(G) { init(); }
    bool has_cycle() const { return result; }
};

int main() {
    int N, Q; cin >> N >> Q;
    vector<pair<int, int>> A(Q);
    for (int i = 0; i < Q; ++i) {
        cin >> A[i].first >> A[i].second;
        --A[i].first; --A[i].second;
    }
    int ok = Q + 1, ng = 0;
    while (ok - ng > 1) {
        int mid = (ok + ng) >> 1;
        vector<vector<int>> G(N);
        for (int i = 0; i < mid; ++i) G[A[i].first].push_back(A[i].second);
        GraphCycle cyc(G);
        if (cyc.has_cycle()) ok = mid;
        else ng = mid;
    }
    if (ok == Q + 1) puts("-1");
    else cout << ok << endl;
}
0