結果

問題 No.1744 Selfish Spies 1 (à la Princess' Perfectionism)
ユーザー umezoumezo
提出日時 2021-11-14 21:52:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 963 bytes
コンパイル時間 2,499 ms
コンパイル使用メモリ 214,252 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-05-07 14:00:58
合計ジャッジ時間 11,067 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 101 ms
5,376 KB
testcase_17 AC 213 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 10 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 104 ms
5,376 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 231 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

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<bits/stdc++.h>
using namespace std;

int G[510][510];
 
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];
    S[i]--,T[i]--;
    G[S[i]][T[i]]=1;
  }
  
  map<pair<int,int>,int> M;
  vector<int> A(510);
  rep(k,n){
    vector<vector<int>> B(n);
    rep(j,m){
      int cnt=0;
      int num;
      rep(i,n){
        if(A[i]) continue;
        if(G[i][j]){
          cnt++;
          num=i;
        }
      }
      if(cnt==1){
        B[num].push_back(j);
      }
    }
    rep(i,n){
      if(A[i]) continue;
      if(B[i].size()==1){
        M[{i,B[i][0]}]=1;
        A[i]=1;
      }
      if(B[i].size()>1){
        A[i]=1;
      }
    }
  }
  
  rep(i,l){
    if(M[{S[i],T[i]}]) cout<<"No"<<endl;
    else cout<<"Yes"<<endl;
  }

  return 0;
}
0