結果

問題 No.1779 Magical Swap
ユーザー kyo1kyo1
提出日時 2021-12-09 13:12:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 2,112 bytes
コンパイル時間 2,691 ms
コンパイル使用メモリ 217,908 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-17 06:45:59
合計ジャッジ時間 4,127 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 53 ms
9,472 KB
testcase_05 AC 22 ms
6,940 KB
testcase_06 AC 25 ms
6,940 KB
testcase_07 AC 45 ms
8,704 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 21 ms
6,944 KB
testcase_10 AC 96 ms
9,856 KB
testcase_11 AC 46 ms
6,940 KB
testcase_12 AC 15 ms
6,940 KB
testcase_13 AC 75 ms
8,448 KB
testcase_14 AC 108 ms
10,624 KB
testcase_15 AC 41 ms
6,944 KB
testcase_16 AC 63 ms
10,624 KB
testcase_17 AC 52 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

class DisjointSet {
 public:
  explicit DisjointSet(const std::size_t n) : nodes(n, Node(n, 1)) {}

  std::size_t size() const { return nodes.size(); }

  std::size_t size(const std::size_t x) { return nodes[find(x)].size; }

  std::size_t find(const std::size_t x) {
    if (nodes[x].parent == size()) return x;
    return nodes[x].parent = find(nodes[x].parent);
  }

  bool is_same(const std::size_t x, const std::size_t y) { return find(x) == find(y); }

  bool unite(const std::size_t x, const std::size_t y) {
    std::size_t rx = find(x), ry = find(y);
    if (rx == ry) return false;
    if (nodes[rx].size < nodes[ry].size) std::swap(rx, ry);
    nodes[rx].size += nodes[ry].size;
    nodes[ry].parent = rx;
    return true;
  }

 private:
  class Node {
   private:
    friend DisjointSet;

    Node(const std::size_t parent, const std::size_t size) : parent(parent), size(size) {}

    std::size_t parent;
    std::size_t size;
  };

  std::vector<Node> nodes;
};

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int T;
  cin >> T;
  auto solve = [&]() {
    int N;
    cin >> N;
    vector<int> A(N), B(N);
    for (auto &&e : A) {
      cin >> e;
    }
    for (auto &&e : B) {
      cin >> e;
    }
    DisjointSet ds(N);
    for (int k = 2; k < N; k++) {
      for (int i = 1; k * (i + 1) - 1 < N; i++) {
        ds.unite(k * i - 1, k * (i + 1) - 1);
      }
    }
    map<int, multiset<int>> mp;
    for (int i = 0; i < N; i++) {
      mp[ds.find(i)].insert(B[i]);
    }
    bool ok = true;
    for (int i = 0; i < N; i++) {
      // for (const auto &[key, value] : mp) {
      //   cerr << "[+]" << ' ' << key << endl;
      //   for (const auto &e : value) {
      //     cerr << e << '\n';
      //   }
      // }
      // cerr << "--------" << endl;
      if (mp[ds.find(i)].find(A[i]) == mp[ds.find(i)].end()) {
        ok = false;
        break;
      }
      mp[ds.find(i)].erase(mp[ds.find(i)].find(A[i]));
    }
    cout << (ok ? "Yes" : "No") << '\n';
  };
  for (int i = 0; i < T; i++) {
    solve();
  }
  return 0;
}
0