結果

問題 No.1865 Make Cycle
ユーザー simansiman
提出日時 2022-03-05 04:05:41
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 859 ms / 3,000 ms
コード長 1,316 bytes
コンパイル時間 3,537 ms
コンパイル使用メモリ 146,612 KB
実行使用メモリ 18,012 KB
最終ジャッジ日時 2024-07-19 03:30:16
合計ジャッジ時間 14,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
13,872 KB
testcase_01 AC 305 ms
11,648 KB
testcase_02 AC 646 ms
14,632 KB
testcase_03 AC 392 ms
13,728 KB
testcase_04 AC 579 ms
15,884 KB
testcase_05 AC 80 ms
14,720 KB
testcase_06 AC 436 ms
13,620 KB
testcase_07 AC 536 ms
13,728 KB
testcase_08 AC 576 ms
16,140 KB
testcase_09 AC 81 ms
14,464 KB
testcase_10 AC 665 ms
15,836 KB
testcase_11 AC 612 ms
14,948 KB
testcase_12 AC 470 ms
13,672 KB
testcase_13 AC 559 ms
13,788 KB
testcase_14 AC 359 ms
12,308 KB
testcase_15 AC 672 ms
14,988 KB
testcase_16 AC 602 ms
15,792 KB
testcase_17 AC 75 ms
12,288 KB
testcase_18 AC 85 ms
15,360 KB
testcase_19 AC 859 ms
18,012 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int N, Q;
int A[100010];
int B[100010];
map<int, map<int, bool>> E;

void update_edges(int x) {
  for (int i = 0; i < Q; ++i) {
    int a = A[i];
    int b = B[i];

    if (i < x) {
      E[a][b] = true;
    } else {
      E[a][b] = false;
    }
  }
}

bool dfs(int v, vector<int> &visited) {
  visited[v] = 1;

  for (auto &[u, s] : E[v]) {
    if (not s) continue;

    if (visited[u] == 1) return true;
    if (visited[u] == 0 && dfs(u, visited)) return true;
  }

  visited[v] = 2;
  return false;
}

bool has_cycle() {
  vector<int> visited(N + 1, 0);

  for (int v = 1; v <= N; ++v) {
    if (visited[v] == 0 && dfs(v, visited)) return true;
  }

  return false;
}

int main() {
  cin >> N >> Q;

  for (int i = 0; i < Q; ++i) {
    cin >> A[i] >> B[i];
  }

  update_edges(Q);
  if (not has_cycle()) {
    cout << -1 << endl;
    return 0;
  }

  int ok = Q;
  int ng = 0;

  while (abs(ok - ng) >= 2) {
    int x = (ok + ng) / 2;
    update_edges(x);

    if (has_cycle()) {
      ok = x;
    } else {
      ng = x;
    }
  }

  cout << ok << endl;

  return 0;
}
0