結果
問題 | No.1744 Selfish Spies 1 (à la Princess' Perfectionism) |
ユーザー | umezo |
提出日時 | 2021-11-15 03:49:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,231 bytes |
コンパイル時間 | 4,681 ms |
コンパイル使用メモリ | 283,696 KB |
実行使用メモリ | 17,324 KB |
最終ジャッジ日時 | 2024-05-07 20:47:29 |
合計ジャッジ時間 | 7,698 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 4 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 40 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 210 ms
17,268 KB |
testcase_29 | AC | 12 ms
6,940 KB |
testcase_30 | AC | 12 ms
6,940 KB |
testcase_31 | AC | 11 ms
6,940 KB |
testcase_32 | AC | 11 ms
6,940 KB |
testcase_33 | AC | 204 ms
17,228 KB |
testcase_34 | AC | 206 ms
17,240 KB |
testcase_35 | AC | 209 ms
17,236 KB |
testcase_36 | AC | 206 ms
17,096 KB |
testcase_37 | AC | 216 ms
17,196 KB |
testcase_38 | AC | 208 ms
17,324 KB |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n,m,l; cin>>n>>m>>l; vector<int> S(l),T(l); rep(i,l) cin>>S[i]>>T[i]; mf_graph<int> g(n+m+2); rep(i,l) g.add_edge(S[i],n+T[i],1); for(int i=1;i<=n;i++) g.add_edge(0,i,1); for(int i=n+1;i<=n+m;i++) g.add_edge(i,n+m+1,1); g.flow(0,n+m+1); auto A=g.edges(); vector<int> C(n+1),D(m+1); rep(i,l){ if(A[i].flow>0){ C[A[i].from]=1; D[A[i].to-n]=1; } } vector<int> E(n+1),F(m+1); rep(i,l){ if(C[S[i]]==0) F[T[i]]=1; if(D[T[i]]==0) E[S[i]]=1; } scc_graph g1(n+m+1); rep(i,l){ if(E[S[i]]==1 || F[T[i]]==1) continue; g1.add_edge(S[i],T[i]+n); if(A[i].flow>0) g1.add_edge(T[i]+n,S[i]); } auto B=g1.scc(); map<pair<int,int>,int> M; for(int i=0;i<B.size();i++){ if(B[i].size()==2){ int a=B[i][0],b=B[i][1]; if(a>b) swap(a,b); M[{a,b-n}]=1; } } rep(i,l){ if(M[{S[i],T[i]}]) cout<<"No"<<endl; else cout<<"Yes"<<endl; } return 0; }