/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 320.0 KiB
#2 Wrong Answer 424ms 10.105 MiB
#3 Wrong Answer 185ms 8.812 MiB

Code

// Created on: 2025-01-02 22:53
// Author: Safwan_Ibrahim

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define endl '\n'

void solve() {
    int n, q; cin >> n >> q;
    int a[n + 1];
    for (int i = 1; i <= n; i++) {
        cin >> a[i];
    }

    set<int>ac;
    for (int i = 1; i <= q; i++) {
        int x, y; cin >> x >> y;
        ac.insert(x); ac.insert(y);
    }

    set<int>el;
    for (auto x : ac) {
        el.insert(a[x]);
    }

    ll ans = 0;
    for (auto x : ac) {
        if (el.find(x) != el.end()) {
            ans++;
        }
    }

    for (int i = 1; i <= n; i++) {
        if (ac.find(i) == ac.end()) {
            if (a[i] == i) {
                ans++;
            }
        }
    }

    cout << ans << endl;
    
}

int32_t main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int t = 1; cin >> t;
    while(t--) solve();
    return 0;
} 

Information

Submit By
Type
Submission
Problem
P1119 Maximizing Fixed Points
Language
C++17 (G++ 13.2.0)
Submit At
2025-01-03 01:44:45
Judged At
2025-01-03 01:44:45
Judged By
Score
5
Total Time
424ms
Peak Memory
10.105 MiB