結果

問題 No.1865 Make Cycle
ユーザー SSRSSSRS
提出日時 2022-03-04 22:11:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 206 ms / 3,000 ms
コード長 887 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 208,532 KB
実行使用メモリ 8,640 KB
最終ジャッジ日時 2024-07-18 20:42:50
合計ジャッジ時間 6,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
6,788 KB
testcase_01 AC 93 ms
6,088 KB
testcase_02 AC 168 ms
7,168 KB
testcase_03 AC 57 ms
6,528 KB
testcase_04 AC 104 ms
7,424 KB
testcase_05 AC 141 ms
7,524 KB
testcase_06 AC 138 ms
7,012 KB
testcase_07 AC 131 ms
6,820 KB
testcase_08 AC 179 ms
7,820 KB
testcase_09 AC 131 ms
7,476 KB
testcase_10 AC 155 ms
7,628 KB
testcase_11 AC 143 ms
7,468 KB
testcase_12 AC 127 ms
6,876 KB
testcase_13 AC 141 ms
6,856 KB
testcase_14 AC 96 ms
6,424 KB
testcase_15 AC 169 ms
7,360 KB
testcase_16 AC 179 ms
7,896 KB
testcase_17 AC 131 ms
6,664 KB
testcase_18 AC 135 ms
7,732 KB
testcase_19 AC 206 ms
8,640 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, Q;
  cin >> N >> Q;
  vector<int> A(Q), B(Q);
  for (int i = 0; i < Q; i++){
    cin >> A[i] >> B[i];
    A[i]--;
    B[i]--;
  }
  int tv = Q + 1, fv = 0;
  while (tv - fv > 1){
    int mid = (tv + fv) / 2;
    vector<vector<int>> E(N);
    vector<int> d(N, 0);
    for (int i = 0; i < mid; i++){
      E[A[i]].push_back(B[i]);
      d[B[i]]++;
    }
    queue<int> q;
    for (int i = 0; i < N; i++){
      if (d[i] == 0){
        q.push(i);
      }
    }
    int cnt = 0;
    while (!q.empty()){
      int v = q.front();
      q.pop();
      cnt++;
      for (int w : E[v]){
        d[w]--;
        if (d[w] == 0){
          q.push(w);
        }
      }
    }
    if (cnt < N){
      tv = mid;
    } else {
      fv = mid;
    }
  }
  if (tv == Q + 1){
    cout << -1 << endl;
  } else {
    cout << tv << endl;
  }
}
0