結果
問題 | No.2289 順列ソート |
ユーザー |
![]() |
提出日時 | 2024-04-09 11:11:09 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 520 bytes |
コンパイル時間 | 2,269 ms |
コンパイル使用メモリ | 203,612 KB |
最終ジャッジ日時 | 2025-02-20 23:18:36 |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/dsu> using namespace std; using namespace atcoder; void fast_io() { ios_base::sync_with_stdio(false); cin.tie(nullptr); } int main() { fast_io(); int n; cin >> n; vector<int> p(n); for (int i = 0; i < n; i++) { cin >> p[i]; p[i]--; } dsu uf(n); for (int i = 0; i < n; i++) { uf.merge(i, p[i]); } int ans = 0; for (auto g : uf.groups()) { ans += g.size() - 1; } cout << ans << endl; }