結果

問題 No.1865 Make Cycle
ユーザー MtSakaMtSaka
提出日時 2022-02-28 00:50:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,989 ms / 3,000 ms
コード長 1,353 bytes
コンパイル時間 2,292 ms
コンパイル使用メモリ 208,792 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-07-16 09:04:55
合計ジャッジ時間 35,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,993 ms
6,812 KB
testcase_01 AC 842 ms
6,944 KB
testcase_02 AC 1,742 ms
7,044 KB
testcase_03 AC 140 ms
6,940 KB
testcase_04 AC 1,042 ms
7,124 KB
testcase_05 AC 1,076 ms
7,288 KB
testcase_06 AC 2,647 ms
7,064 KB
testcase_07 AC 1,053 ms
6,944 KB
testcase_08 AC 2,080 ms
7,564 KB
testcase_09 AC 985 ms
7,392 KB
testcase_10 AC 2,262 ms
7,540 KB
testcase_11 AC 1,538 ms
7,260 KB
testcase_12 AC 1,896 ms
6,940 KB
testcase_13 AC 1,248 ms
6,940 KB
testcase_14 AC 459 ms
6,940 KB
testcase_15 AC 2,989 ms
7,364 KB
testcase_16 AC 2,040 ms
7,712 KB
testcase_17 AC 1,004 ms
6,940 KB
testcase_18 AC 1,034 ms
7,528 KB
testcase_19 AC 2,035 ms
8,576 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,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
bool dfs(int i, vector<int>& seen, vector<vector<int> >& g)
{
    seen[i] = 1;
    for (auto& j : g[i]) {
        if (seen[j] == 1 || (seen[j] == 0 && dfs(j, seen, g))) {
            return true;
        }
    }
    seen[i] = 2;
    return false;
}
int main()
{
    int n, q;
    cin >> n >> q;
    vector<pair<int, int> > edges(q);
    for (int i = 0; i < q; i++) {
        int a, b;
        cin >> a >> b;
        edges[i] = { a - 1, b - 1 };
    }
    int sq = sqrtl(q);
    int block_size = (q + sq - 1) / sq;
    auto check = [&](int i) {
        vector<vector<int> > g(n);
        for (int j = 0; j < i; j++) {
            g[edges[j].first].push_back(edges[j].second);
        }
        vector<int> seen(n, 0);
        bool has_cycle = false;
        for (int i = 0; i < n; i++) {
            if (seen[i] == 0 && dfs(i, seen, g)) {
                has_cycle = true;
                break;
            }
        }
        return has_cycle;
    };
    int idx = 0;
    for (int i = 0; i <= sq; i++) {
        if (check(min(q, i * block_size))) {
            idx = (i - 1) * block_size;
            break;
        }
    }
    for (int i = 0; i <= block_size; i++) {
        if (check(min(q, idx + i))) {
            cout << idx + i << endl;
            return 0;
        }
    }
    cout << -1 << endl;
}
0