結果
問題 | No.1865 Make Cycle |
ユーザー | miscalc |
提出日時 | 2022-03-04 21:58:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 266 ms / 3,000 ms |
コード長 | 2,238 bytes |
コンパイル時間 | 2,300 ms |
コンパイル使用メモリ | 211,900 KB |
実行使用メモリ | 10,240 KB |
最終ジャッジ日時 | 2024-07-18 20:24:02 |
合計ジャッジ時間 | 6,438 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 177 ms
8,192 KB |
testcase_01 | AC | 115 ms
7,140 KB |
testcase_02 | AC | 201 ms
8,448 KB |
testcase_03 | AC | 76 ms
8,064 KB |
testcase_04 | AC | 130 ms
8,832 KB |
testcase_05 | AC | 45 ms
8,704 KB |
testcase_06 | AC | 164 ms
7,848 KB |
testcase_07 | AC | 160 ms
8,064 KB |
testcase_08 | AC | 213 ms
9,216 KB |
testcase_09 | AC | 42 ms
8,448 KB |
testcase_10 | AC | 184 ms
9,088 KB |
testcase_11 | AC | 173 ms
8,576 KB |
testcase_12 | AC | 154 ms
8,064 KB |
testcase_13 | AC | 167 ms
8,320 KB |
testcase_14 | AC | 119 ms
7,424 KB |
testcase_15 | AC | 204 ms
8,704 KB |
testcase_16 | AC | 216 ms
9,028 KB |
testcase_17 | AC | 44 ms
7,552 KB |
testcase_18 | AC | 43 ms
8,576 KB |
testcase_19 | AC | 266 ms
10,240 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 |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/modint> using namespace atcoder; //using mint = modint998244353; using mint = modint1000000007; using ll = long long; using ld = long double; using pll = pair<ll, ll>; using tlll = tuple<ll, ll, ll>; constexpr ll INF = 1LL << 60; template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;} template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;} ll safemod(ll A, ll M) {return (A % M + M) % M;} ll divfloor(ll A, ll B) {if (B < 0) {return divfloor(-A, -B);} return (A - safemod(A, B)) / B;} ll divceil(ll A, ll B) {if (B < 0) {return divceil(-A, -B);} return divfloor(A + B - 1, B);} template<class T> void unique(vector<T> &V) {V.erase(unique(V.begin(), V.end()), V.end());} template<class T> void sortunique(vector<T> &V) {sort(V.begin(), V.end()); V.erase(unique(V.begin(), V.end()), V.end());} #define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false) template<class T> void printvec(vector<T> &V) {int _n = V.size(); for (int i = 0; i < _n; i++) cout << V[i] << (i == _n - 1 ? "" : " ");cout << '\n';} template<class T> void printvect(vector<T> &V) {for (auto v : V) cout << v << '\n';} template<class T> void printvec2(vector<vector<T>> &V) {for (auto &v : V) printvec(v);} ll N, Q; vector<ll> A, B; bool isok(ll k) { vector<vector<ll>> G(N); vector<ll> H(N, 0); for (ll i = 0; i < k; i++) { G.at(A.at(i)).push_back(B.at(i)); H.at(B.at(i))++; } queue<ll> que; for (ll i = 0; i < N; i++) { if (H.at(i) == 0) que.push(i); } while (!que.empty()) { ll v = que.front(); que.pop(); for (auto nv : G.at(v)) { H.at(nv)--; if (H.at(nv) == 0) que.push(nv); } } /* cerr << k << " "; printvec(H); //*/ return *max_element(H.begin(), H.end()) == 0; } int main() { cin >> N >> Q; A.resize(Q), B.resize(Q); for (ll i = 0; i < Q; i++) { cin >> A.at(i) >> B.at(i); A.at(i)--, B.at(i)--; } if (isok(Q)) FINALANS(-1); ll ok = -1, ng = Q; while (abs(ok - ng) > 1) { ll mid = (ok + ng) / 2; if (isok(mid)) ok = mid; else ng = mid; } cout << ok + 1 << endl; }