結果

問題 No.1865 Make Cycle
ユーザー hitonanodehitonanode
提出日時 2023-05-10 07:11:27
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 185 ms / 3,000 ms
コード長 541 bytes
コンパイル時間 1,439 ms
コンパイル使用メモリ 107,364 KB
実行使用メモリ 12,184 KB
最終ジャッジ日時 2024-11-26 12:31:40
合計ジャッジ時間 6,236 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
8,336 KB
testcase_01 AC 101 ms
7,376 KB
testcase_02 AC 158 ms
8,992 KB
testcase_03 AC 82 ms
8,200 KB
testcase_04 AC 135 ms
9,804 KB
testcase_05 AC 171 ms
9,596 KB
testcase_06 AC 153 ms
8,608 KB
testcase_07 AC 145 ms
8,356 KB
testcase_08 AC 159 ms
9,964 KB
testcase_09 AC 140 ms
9,816 KB
testcase_10 AC 181 ms
9,280 KB
testcase_11 AC 137 ms
9,432 KB
testcase_12 AC 138 ms
8,256 KB
testcase_13 AC 134 ms
8,416 KB
testcase_14 AC 103 ms
8,248 KB
testcase_15 AC 169 ms
8,956 KB
testcase_16 AC 160 ms
12,184 KB
testcase_17 AC 139 ms
8,092 KB
testcase_18 AC 179 ms
9,976 KB
testcase_19 AC 185 ms
11,176 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/scc>
#include <iostream>
using namespace std;

int A[100000];
int B[100000];

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N, Q;
    cin >> N >> Q;
    for (int q = 0; q < Q; ++q) cin >> A[q] >> B[q];

    int ng = 0, ok = Q + 1;
    while (ok - ng > 1) {
        const int c = (ok + ng) / 2;
        atcoder::scc_graph g(N + 1);
        for (int e = 0; e < c; ++e) g.add_edge(A[e], B[e]);
        (int(g.scc().size()) < N + 1 ? ok : ng) = c;
    }
    cout << (ok == Q + 1 ? -1 : ok) << '\n';
}
0