結果

問題 No.1744 Selfish Spies 1 (à la Princess' Perfectionism)
ユーザー umezoumezo
提出日時 2021-11-15 05:34:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,442 bytes
コンパイル時間 4,659 ms
コンパイル使用メモリ 285,740 KB
実行使用メモリ 18,040 KB
最終ジャッジ日時 2024-05-07 23:58:30
合計ジャッジ時間 8,312 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 40 ms
6,284 KB
testcase_25 WA -
testcase_26 AC 6 ms
5,376 KB
testcase_27 WA -
testcase_28 AC 212 ms
17,940 KB
testcase_29 AC 12 ms
5,376 KB
testcase_30 AC 12 ms
5,376 KB
testcase_31 AC 11 ms
5,376 KB
testcase_32 AC 11 ms
5,376 KB
testcase_33 AC 216 ms
17,896 KB
testcase_34 AC 218 ms
18,040 KB
testcase_35 AC 219 ms
17,904 KB
testcase_36 AC 215 ms
17,892 KB
testcase_37 AC 214 ms
17,848 KB
testcase_38 AC 217 ms
17,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;

vector<int> G[1010];
int used[1010];

void dfs(int v){
  used[v]=1;
  for(auto nv:G[v]){
    if(used[nv]) continue;
    dfs(nv);
  }
}
 
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);
  dsu d(n+m+1);
  rep(i,l){
    G[S[i]].push_back(T[i]+n);
    if(A[i].flow>0){
      C[S[i]]=-1,D[T[i]]=-1;
      G[T[i]+n].push_back(S[i]);
    }
  }
  
  for(int i=1;i<=n;i++){
    if(C[i]!=-1) dfs(i);
  }
  rep(i,l){
    if(D[T[i]]!=-1) used[S[i]]=1;
  }
  
  scc_graph g1(n+m+1);
  rep(i,l){
    if(used[S[i]]==1 || used[T[i]+n]==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;
}
0