結果
問題 | No.1865 Make Cycle |
ユーザー | kabipoyo |
提出日時 | 2022-03-04 22:03:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 262 ms / 3,000 ms |
コード長 | 1,611 bytes |
コンパイル時間 | 4,341 ms |
コンパイル使用メモリ | 267,420 KB |
実行使用メモリ | 11,820 KB |
最終ジャッジ日時 | 2024-07-18 20:29:37 |
合計ジャッジ時間 | 9,195 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 184 ms
8,876 KB |
testcase_01 | AC | 109 ms
7,664 KB |
testcase_02 | AC | 228 ms
9,792 KB |
testcase_03 | AC | 69 ms
8,408 KB |
testcase_04 | AC | 129 ms
10,096 KB |
testcase_05 | AC | 167 ms
10,136 KB |
testcase_06 | AC | 167 ms
9,524 KB |
testcase_07 | AC | 170 ms
8,808 KB |
testcase_08 | AC | 213 ms
10,828 KB |
testcase_09 | AC | 158 ms
10,064 KB |
testcase_10 | AC | 189 ms
10,356 KB |
testcase_11 | AC | 172 ms
9,916 KB |
testcase_12 | AC | 154 ms
9,336 KB |
testcase_13 | AC | 188 ms
8,708 KB |
testcase_14 | AC | 117 ms
8,112 KB |
testcase_15 | AC | 203 ms
10,036 KB |
testcase_16 | AC | 214 ms
10,548 KB |
testcase_17 | AC | 154 ms
8,472 KB |
testcase_18 | AC | 164 ms
10,256 KB |
testcase_19 | AC | 262 ms
11,820 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i<n; i++) #define repx(i, l, n) for(int i=l; i<n; i++) #define all(v) v.begin(), v.end() #define show(x) cout << #x << ": " << x << endl; #define list(x) cout << #x << ": " << x << " "; #define pb push_back using vi = vector<lint>; using vvi = vector<vector<lint>>; template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<class T> inline void drop(T x) { cout << x << endl; exit(0); } template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; vi A, B; vi topo_sort(int N, int M) { vector<vector<int>> G(N); int x, y; rep(i, M) { x = A[i], y = B[i]; G[x].push_back(y); } vi res; vi v(N); rep(i, N) { for (auto e : G[i]) v[e]++; } queue<int> Q; rep(i, N) { if (!v[i]) Q.push(i); } while (!Q.empty()) { int x = Q.front(); Q.pop(); res.push_back(x); for (auto e : G[x]) { v[e]--; if (!v[e]) Q.push(e); } } return res; } int main() { lint N, Q; cin >> N >> Q; lint a=0, b=Q+1, c=0, x, y, z; rep(i, Q) { cin >> x >> y; A.pb(x-1), B.pb(y-1); } while (b-a > 1) { c = (a+b)/2; vi v = topo_sort(N, c); if (v.size() == N) a = c; else b = c; } if (b == Q+1) std::cout << -1 << '\n'; else std::cout << b << '\n'; }