結果

問題 No.2319 Friends+
ユーザー pointNpointN
提出日時 2023-05-26 22:40:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,975 bytes
コンパイル時間 1,717 ms
コンパイル使用メモリ 146,964 KB
実行使用メモリ 46,012 KB
最終ジャッジ日時 2023-08-26 12:49:17
合計ジャッジ時間 7,954 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 201 ms
27,028 KB
testcase_08 AC 199 ms
26,784 KB
testcase_09 AC 199 ms
26,992 KB
testcase_10 AC 206 ms
26,852 KB
testcase_11 AC 197 ms
26,788 KB
testcase_12 AC 2 ms
4,384 KB
testcase_13 AC 3 ms
4,384 KB
testcase_14 AC 2 ms
4,504 KB
testcase_15 AC 2 ms
4,384 KB
testcase_16 AC 2 ms
4,388 KB
testcase_17 AC 2 ms
4,384 KB
testcase_18 AC 134 ms
27,848 KB
testcase_19 AC 154 ms
28,008 KB
testcase_20 AC 1,204 ms
26,996 KB
testcase_21 AC 610 ms
26,856 KB
testcase_22 AC 2,194 ms
26,728 KB
testcase_23 AC 158 ms
27,556 KB
testcase_24 AC 153 ms
27,068 KB
testcase_25 AC 147 ms
27,052 KB
testcase_26 AC 148 ms
27,308 KB
testcase_27 AC 149 ms
27,308 KB
testcase_28 AC 147 ms
27,260 KB
testcase_29 AC 150 ms
26,740 KB
testcase_30 AC 1,954 ms
26,784 KB
testcase_31 AC 1,035 ms
26,744 KB
testcase_32 AC 517 ms
26,864 KB
testcase_33 AC 270 ms
26,736 KB
testcase_34 AC 199 ms
26,996 KB
testcase_35 AC 182 ms
26,864 KB
testcase_36 AC 416 ms
27,052 KB
testcase_37 AC 427 ms
45,508 KB
testcase_38 AC 158 ms
26,856 KB
testcase_39 AC 179 ms
26,996 KB
testcase_40 AC 218 ms
26,800 KB
testcase_41 AC 323 ms
26,856 KB
testcase_42 AC 607 ms
27,268 KB
testcase_43 AC 1,227 ms
27,212 KB
testcase_44 AC 2,837 ms
28,632 KB
testcase_45 AC 453 ms
36,760 KB
testcase_46 AC 914 ms
45,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <cmath>
#include <iomanip>
#include <stack>
#include <queue>
#include <numeric>
#include <map>
#include <unordered_map>
#include <set>
#include <fstream>
#include <chrono>
#include <random>
#include <bitset>
//#include <atcoder/all>
#define rep(i,n) for(int i=0;i<(n);i++)
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define sz(x) ((int)(x).size())
#define pb push_back
using ll = long long;
using namespace std;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
ll gcd(ll a, ll b) {return b?gcd(b,a%b):a;}
ll lcm(ll a, ll b) {return a/gcd(a,b)*b;}


int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  const int X = 150;
  int N,M; cin >> N >> M;
  vector<int> W(N);
  vector<vector<int>> F(N);
  vector<multiset<int>> FW(N);
  vector<map<int,int>> memo(N);
  rep(i,N) cin >> W[i];
  rep(i,N) W[i]--;
  rep(i,M){
    int a,b; cin >> a >> b; a--; b--;
    if(a==b) continue;
    F[a].pb(b);
    F[b].pb(a);
  }
  rep(i,N){
    rep(j,sz(F[i])){
      FW[i].insert(W[F[i][j]]);
      if(sz(F[F[i][j]])>X) memo[i][F[i][j]] = W[F[i][j]];
    }
  }
  int Q; cin >> Q;
  while(Q--){
    int x,y; cin >> x >> y; x--; y--;
    if(W[x]==W[y]) cout << "No\n";
    else{
      int wx = W[x];
      int wy = W[y];
      for(auto& m:memo[x]){
        if(W[m.first]!=m.second){
          FW[x].erase(FW[x].find(m.second));
          FW[x].insert(W[m.second]);
          m.second = W[m.first];
        }
      }
      if(FW[x].find(wy)!=FW[x].end()){
        cout << "Yes\n";
        W[x] = wy;
        if(sz(F[x])<=X){
          rep(i,sz(F[x])){
            FW[F[x][i]].erase(FW[F[x][i]].find(wx));
            FW[F[x][i]].insert(wy);
          }
        }
      }
      else cout << "No\n";
    }
  }
  return 0;
}
0