結果

問題 No.482 あなたの名は
ユーザー kyo1kyo1
提出日時 2020-12-26 18:43:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,528 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 210,540 KB
実行使用メモリ 13,524 KB
最終ジャッジ日時 2023-10-25 02:30:47
合計ジャッジ時間 5,991 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 86 ms
13,468 KB
testcase_16 AC 88 ms
13,524 KB
testcase_17 AC 84 ms
13,468 KB
testcase_18 AC 86 ms
13,468 KB
testcase_19 AC 87 ms
13,468 KB
testcase_20 AC 86 ms
13,468 KB
testcase_21 AC 87 ms
13,468 KB
testcase_22 AC 89 ms
13,468 KB
testcase_23 AC 89 ms
13,468 KB
testcase_24 AC 87 ms
13,468 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

class DisjointSet {
 private:
  class Node {
    friend DisjointSet;

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

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

  std::vector<Node> nodes;

 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[root(x)].size; }

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

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

  bool unite(const std::size_t x, const std::size_t y) {
    std::size_t rx = root(x), ry = root(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;
  }
};

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N, K;
  cin >> N >> K;
  DisjointSet ds(N);
  for (int i = 0; i < N; i++) {
    int d;
    cin >> d;
    d--;
    ds.unite(i, d);
  }
  int count = 0;
  set<int> roots;
  for (int i = 0; i < N; i++) {
    if (roots.find(ds.root(i)) != roots.end()) continue;
    count += ds.size(i) - 1;
    roots.insert(ds.root(i));
  }
  if (count > K || (K - count) % 2 != 0) {
    cout << "NO" << '\n';
  } else {
    cout << "YES" << '\n';
  }
  return 0;
}
0