結果

問題 No.2319 Friends+
ユーザー umezoumezo
提出日時 2024-04-11 00:36:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 376 ms / 3,000 ms
コード長 864 bytes
コンパイル時間 3,087 ms
コンパイル使用メモリ 248,600 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-10-02 21:08:10
合計ジャッジ時間 18,303 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 223 ms
101,120 KB
testcase_03 AC 185 ms
101,120 KB
testcase_04 AC 181 ms
100,992 KB
testcase_05 AC 175 ms
101,088 KB
testcase_06 AC 178 ms
101,092 KB
testcase_07 AC 364 ms
101,120 KB
testcase_08 AC 367 ms
101,108 KB
testcase_09 AC 376 ms
101,120 KB
testcase_10 AC 355 ms
101,120 KB
testcase_11 AC 351 ms
101,116 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 5 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 210 ms
101,120 KB
testcase_19 AC 249 ms
100,992 KB
testcase_20 AC 195 ms
101,120 KB
testcase_21 AC 194 ms
101,120 KB
testcase_22 AC 197 ms
101,120 KB
testcase_23 AC 236 ms
101,096 KB
testcase_24 AC 222 ms
101,120 KB
testcase_25 AC 210 ms
101,120 KB
testcase_26 AC 204 ms
101,088 KB
testcase_27 AC 202 ms
101,104 KB
testcase_28 AC 197 ms
101,120 KB
testcase_29 AC 196 ms
101,076 KB
testcase_30 AC 195 ms
101,020 KB
testcase_31 AC 197 ms
101,080 KB
testcase_32 AC 195 ms
101,120 KB
testcase_33 AC 192 ms
100,952 KB
testcase_34 AC 189 ms
101,248 KB
testcase_35 AC 186 ms
101,120 KB
testcase_36 AC 243 ms
101,112 KB
testcase_37 AC 153 ms
100,992 KB
testcase_38 AC 176 ms
101,120 KB
testcase_39 AC 177 ms
101,084 KB
testcase_40 AC 180 ms
101,120 KB
testcase_41 AC 182 ms
101,120 KB
testcase_42 AC 179 ms
101,120 KB
testcase_43 AC 181 ms
101,120 KB
testcase_44 AC 180 ms
100,992 KB
testcase_45 AC 173 ms
101,188 KB
testcase_46 AC 165 ms
101,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>; //B(n,V<int>(n))
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n,m;
  cin>>n>>m;
  V<int> P(n);
  V<bitset<20000>> wor(n),fri(n); 
  rep(i,n){
    cin>>P[i];
    P[i]--;
    wor[P[i]].set(i);
  }
  rep(i,m){
    int a,b;
    cin>>a>>b;
    a--,b--;
    fri[a].set(b);
    fri[b].set(a);
  }
  int q;
  cin>>q;
  rep(i,q){
    int x,y;
    cin>>x>>y;
    x--,y--;
    if(P[x]==P[y]){
      cout<<"No\n";
    }
    else{
      if((wor[P[y]]&fri[x]).any()){
        cout<<"Yes\n";
        wor[P[x]].reset(x);
        P[x]=P[y];
        wor[P[x]].set(x);
      }
      else cout<<"No\n";
    }
  }
  
  return 0;
}
0