結果
問題 | No.1744 Selfish Spies 1 (à la Princess' Perfectionism) |
ユーザー | magurofly |
提出日時 | 2021-11-14 22:00:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,159 bytes |
コンパイル時間 | 4,492 ms |
コンパイル使用メモリ | 271,088 KB |
実行使用メモリ | 20,584 KB |
最終ジャッジ日時 | 2024-11-30 07:30:36 |
合計ジャッジ時間 | 87,558 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
12,148 KB |
testcase_01 | AC | 2 ms
10,784 KB |
testcase_02 | AC | 2 ms
20,580 KB |
testcase_03 | AC | 2 ms
20,436 KB |
testcase_04 | AC | 2 ms
13,636 KB |
testcase_05 | AC | 2 ms
20,584 KB |
testcase_06 | AC | 2 ms
20,412 KB |
testcase_07 | AC | 2 ms
13,636 KB |
testcase_08 | AC | 2 ms
20,320 KB |
testcase_09 | AC | 3 ms
13,640 KB |
testcase_10 | RE | - |
testcase_11 | AC | 12 ms
6,820 KB |
testcase_12 | AC | 30 ms
6,820 KB |
testcase_13 | RE | - |
testcase_14 | AC | 231 ms
6,816 KB |
testcase_15 | RE | - |
testcase_16 | AC | 475 ms
6,816 KB |
testcase_17 | AC | 1,958 ms
6,816 KB |
testcase_18 | AC | 1,882 ms
6,820 KB |
testcase_19 | AC | 5 ms
6,820 KB |
testcase_20 | RE | - |
testcase_21 | AC | 114 ms
6,816 KB |
testcase_22 | AC | 30 ms
6,816 KB |
testcase_23 | RE | - |
testcase_24 | TLE | - |
testcase_25 | RE | - |
testcase_26 | AC | 709 ms
6,820 KB |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; // ACL using ll = int; #include <atcoder/all> using namespace atcoder; int main() { int N, M, L; cin >> N >> M >> L; vector<pair<ll, ll>> pairs(L); for (int i = 0; i < L; i++) { int S, T; cin >> S >> T; pairs[i] = {S-1, T-1}; } mf_graph<int> g1(N * 2 + 2); int s = N * 2, t = N * 2 + 1; for (int j = 0; j < L; j++) { g1.add_edge(pairs[j].first, pairs[j].second + N, 1); } for (int j = 0; j < N; j++) { g1.add_edge(s, j, 1); g1.add_edge(j + N, t, 1); } int maxflow = g1.flow(s, t); for (int i = 0; i < L; i++) { mf_graph<int> g(N * 2 + 2); int s = N * 2, t = N * 2 + 1; for (int j = 0; j < L; j++) { if (j == i) continue; g.add_edge(pairs[j].first, pairs[j].second + N, 1); } for (int j = 0; j < N; j++) { g.add_edge(s, j, 1); g.add_edge(j + N, t, 1); } int flow = g.flow(s, t); cout << ((flow == maxflow) ? "Yes" : "No") << "\n"; } }