結果

問題 No.2319 Friends+
ユーザー risujirohrisujiroh
提出日時 2023-05-26 21:53:53
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 525 ms / 3,000 ms
コード長 2,288 bytes
コンパイル時間 3,269 ms
コンパイル使用メモリ 251,064 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-12-25 06:32:57
合計ジャッジ時間 18,878 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 45
権限があれば一括ダウンロードができます

ソースコード

diff #

#if __INCLUDE_LEVEL__ == 0

#include <bits/stdc++.h>

using namespace std;

#include __BASE_FILE__

namespace std::ranges::views {

namespace {

void solve() {
  int n, m;
  cin >> tie(n, m);
  vector<int> p(n);
  vector<bitset<20000>> h(n);
  for (int i : iota(0, n)) {
    cin >> p[i];
    --p[i];
    h[p[i]][i] = 1;
  }
  vector<bitset<20000>> g(n);
  while (m--) {
    int a, b;
    cin >> tie(a, b);
    --a, --b;
    g[a][b] = 1;
    g[b][a] = 1;
  }
  int q;
  cin >> q;
  while (q--) {
    int x, y;
    cin >> tie(x, y);
    --x, --y;
    bool ans = [&]() -> bool {
      if (p[x] == p[y]) {
        return false;
      }
      if ((g[x] & h[p[y]]).none()) {
        return false;
      }
      h[p[x]][x] = 0;
      p[x] = p[y];
      h[p[x]][x] = 1;
      return true;
    }();
    cout << (ans ? "Yes\n" : "No\n");
  }
}

}  // namespace

}  // namespace std::ranges::views

using views::solve;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  solve();
}

#else  // __INCLUDE_LEVEL__

namespace std {

template <class T1, class T2>
istream& operator>>(istream& is, pair<T1, T2>& p) {
  return is >> p.first >> p.second;
}

template <class... Ts>
istream& operator>>(istream& is, tuple<Ts...>& t) {
  return apply([&is](auto&... xs) -> istream& { return (is >> ... >> xs); }, t);
}

template <class... Ts>
istream& operator>>(istream& is, tuple<Ts&...>&& t) {
  return is >> t;
}

template <class R, enable_if_t<!is_convertible_v<R, string>>* = nullptr>
auto operator>>(istream& is, R&& r) -> decltype(is >> *begin(r)) {
  for (auto&& e : r) {
    is >> e;
  }
  return is;
}

template <class T1, class T2>
ostream& operator<<(ostream& os, const pair<T1, T2>& p) {
  return os << p.first << ' ' << p.second;
}

template <class... Ts>
ostream& operator<<(ostream& os, const tuple<Ts...>& t) {
  auto f = [&os](const auto&... xs) -> ostream& {
    [[maybe_unused]] auto sep = "";
    ((os << exchange(sep, " ") << xs), ...);
    return os;
  };
  return apply(f, t);
}

template <class R, enable_if_t<!is_convertible_v<R, string_view>>* = nullptr>
auto operator<<(ostream& os, R&& r) -> decltype(os << *begin(r)) {
  auto sep = "";
  for (auto&& e : r) {
    os << exchange(sep, " ") << e;
  }
  return os;
}

}  // namespace std

#endif  // __INCLUDE_LEVEL__
0