Submission #54377661


Source Code Expand

Copy
#include<iostream>
#include<string>
#include<vector>
#include<cmath>
#include<algorithm>
#include<map>
#include<iomanip>
#include<set>
#include<numeric>
#include<bitset>
#include<queue>
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
#define all(v) v.begin(), v.end()
#define dump(x) cout << #x << " = " << (x) << endl
#define YES(n) cout << ((n) ? "YES" : "NO" ) << endl
#define Yes(n) cout << ((n) ? "Yes" : "No" ) << endl
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define FORE(x,a) for(auto& (x) : (a) )
#define ENDL cout<<endl
#define VECCIN(x) for(auto&youso_: (x) )cin>>youso_
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include<iostream>
#include<string>
#include<vector>
#include<cmath>
#include<algorithm>
#include<map>
#include<iomanip>
#include<set>
#include<numeric>
#include<bitset>
#include<queue>

#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
#define all(v) v.begin(), v.end()
#define dump(x)  cout << #x << " = " << (x) << endl
#define YES(n) cout << ((n) ? "YES" : "NO"  ) << endl
#define Yes(n) cout << ((n) ? "Yes" : "No"  ) << endl
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define FORE(x,a) for(auto& (x) : (a) )
#define ENDL cout<<endl
#define VECCIN(x) for(auto&youso_: (x) )cin>>youso_
#define VECCOUT(x) for(auto&youso_: (x) )cout<<youso_<<" ";cout<<endl
#define pb(a) push_back(a)
#define mp make_pair
#define mt make_tuple

#define mll map<long long,long long>
#define msl map<string,long long>
#define pll pair<long long, long long>
#define qll queue<long long>
#define pqll priority_queue<long long>
#define vi vector<int>
#define vs vector<string>
#define vll vector<long long>
#define vvll vector<vector<long long>>

using ll = long long;
using ull = unsigned long long;
using namespace std;

const ll MOD = 998244353;
const ll INF = 1e17;

int main() {
    ll n;
    cin >> n;
    vll a(n), conn;
    rep(i, n) {
        cin >> a[i];
        --a[i];
    }
    vll ex(n);
    qll q;
    rep(i, n) {
        if (ex[i] == 1)continue;
        q.push(i);
        ll cn = 1;
        while (!q.empty()) {
            ll v = q.front();
            //cout << v << endl;
            q.pop();
            if (ex[a[v]] == 0) {
                ++cn;
                q.push(a[v]);
                ex[a[v]] = 1;
            }
        }
        conn.pb(cn);
    }
    ll ans = 0;
    for (auto x : conn) {
        ans += x * (x - 1);
    }
    cout << ans;
    return 0;
}

Submission Info

Submission Time
Task E - Reachability in Functional Graph
User Patos1234
Language C++ 20 (gcc 12.2)
Score 0
Code Size 1859 Byte
Status WA
Exec Time 41 ms
Memory 8260 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 450
Status
AC × 2
WA × 1
AC × 2
WA × 26
Set Name Test Cases
Sample 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt
All 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_small_00.txt, 01_small_01.txt, 01_small_02.txt, 01_small_03.txt, 01_small_04.txt, 01_small_05.txt, 01_small_06.txt, 01_small_07.txt, 01_small_08.txt, 01_small_09.txt, 02_random_00.txt, 02_random_01.txt, 02_random_02.txt, 02_random_03.txt, 02_random_04.txt, 02_random_05.txt, 02_random_06.txt, 02_random_07.txt, 02_random_08.txt, 02_random_09.txt, 03_large_cycle_00.txt, 03_large_cycle_01.txt, 04_tree_plus_an_edge_00.txt, 04_tree_plus_an_edge_01.txt, 05_many_self_loops_00.txt
Case Name Status Exec Time Memory
00_sample_00.txt AC 1 ms 3612 KB
00_sample_01.txt AC 1 ms 3648 KB
00_sample_02.txt WA 1 ms 3464 KB
01_small_00.txt WA 1 ms 3444 KB
01_small_01.txt WA 1 ms 3464 KB
01_small_02.txt WA 1 ms 3476 KB
01_small_03.txt WA 1 ms 3456 KB
01_small_04.txt WA 1 ms 3448 KB
01_small_05.txt WA 1 ms 3564 KB
01_small_06.txt WA 1 ms 3520 KB
01_small_07.txt WA 1 ms 3468 KB
01_small_08.txt WA 1 ms 3572 KB
01_small_09.txt WA 1 ms 3588 KB
02_random_00.txt WA 35 ms 7008 KB
02_random_01.txt WA 39 ms 7256 KB
02_random_02.txt WA 38 ms 7164 KB
02_random_03.txt WA 40 ms 7280 KB
02_random_04.txt WA 17 ms 5116 KB
02_random_05.txt WA 41 ms 7276 KB
02_random_06.txt WA 5 ms 3724 KB
02_random_07.txt WA 39 ms 7224 KB
02_random_08.txt WA 35 ms 7044 KB
02_random_09.txt WA 39 ms 7276 KB
03_large_cycle_00.txt WA 39 ms 6220 KB
03_large_cycle_01.txt WA 38 ms 6324 KB
04_tree_plus_an_edge_00.txt WA 39 ms 7368 KB
04_tree_plus_an_edge_01.txt WA 39 ms 7376 KB
05_many_self_loops_00.txt WA 35 ms 8260 KB


2025-04-04 (Fri)
01:10:08 +00:00