結果

問題 No.2319 Friends+
ユーザー pointNpointN
提出日時 2023-05-26 23:42:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,254 ms / 3,000 ms
コード長 2,172 bytes
コンパイル時間 1,496 ms
コンパイル使用メモリ 142,904 KB
実行使用メモリ 169,856 KB
最終ジャッジ日時 2024-07-19 19:33:13
合計ジャッジ時間 34,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2,254 ms
46,464 KB
testcase_03 AC 2,108 ms
46,336 KB
testcase_04 AC 1,882 ms
46,464 KB
testcase_05 AC 1,849 ms
46,464 KB
testcase_06 AC 1,986 ms
46,336 KB
testcase_07 AC 261 ms
34,944 KB
testcase_08 AC 274 ms
34,816 KB
testcase_09 AC 269 ms
34,816 KB
testcase_10 AC 262 ms
34,944 KB
testcase_11 AC 295 ms
34,688 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 102 ms
14,080 KB
testcase_19 AC 166 ms
28,416 KB
testcase_20 AC 377 ms
22,912 KB
testcase_21 AC 238 ms
20,224 KB
testcase_22 AC 626 ms
24,448 KB
testcase_23 AC 158 ms
27,008 KB
testcase_24 AC 147 ms
26,368 KB
testcase_25 AC 145 ms
26,112 KB
testcase_26 AC 141 ms
25,856 KB
testcase_27 AC 148 ms
25,600 KB
testcase_28 AC 2,087 ms
29,440 KB
testcase_29 AC 1,030 ms
25,856 KB
testcase_30 AC 564 ms
24,064 KB
testcase_31 AC 341 ms
22,528 KB
testcase_32 AC 233 ms
19,456 KB
testcase_33 AC 156 ms
16,256 KB
testcase_34 AC 124 ms
13,824 KB
testcase_35 AC 114 ms
12,672 KB
testcase_36 AC 1,210 ms
169,856 KB
testcase_37 AC 1,881 ms
36,864 KB
testcase_38 AC 149 ms
25,728 KB
testcase_39 AC 159 ms
25,728 KB
testcase_40 AC 185 ms
25,728 KB
testcase_41 AC 227 ms
25,728 KB
testcase_42 AC 302 ms
25,728 KB
testcase_43 AC 471 ms
25,856 KB
testcase_44 AC 872 ms
26,496 KB
testcase_45 AC 2,128 ms
31,232 KB
testcase_46 AC 264 ms
33,536 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 = 400;
  int N,M; cin >> N >> M;
  vector<int> W(N);
  vector<vector<int>> F(N);
  vector<unordered_map<int,int>> FW(N);
  vector<unordered_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])){
      int f = F[i][j];
      FW[i][W[f]]++;
      if(sz(F[f])>X) memo[i][f] = W[f];
    }
  }
  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];
      vector<pair<int,int>> err;
      for(auto& m:memo[x]){
        if(W[m.first]!=m.second){
          FW[x][m.second]--;
          FW[x][W[m.first]]++;
          m.second = W[m.first];

        }
      }
      rep(i,sz(err)){
        int f = err[i].first;
        int pre = memo[x][f];
        int now = err[i].second;
        memo[x][f] = now;
        FW[x][pre]--;
        FW[x][now]++;
      }
      if(FW[x][wy]>0){
        cout << "Yes\n";
        W[x] = wy;
        if(sz(F[x])<=X){
          rep(i,sz(F[x])){
            int f = F[x][i];
            FW[f][wx]--;
            FW[f][wy]++;
          }
        }
      }
      else cout << "No\n";
    }
  }
  return 0;
}
0