Submission #3932848


Source Code Expand

using System;
using System.Collections.Generic;
using System.Linq;
using static Atcoder;
using System.Threading.Tasks;
using System.ComponentModel;

public class Hello
{
    private const int INF = 1000000007;
    public static void Main()
    {
        int[] inp = IntLine();
        int N = inp[0], M = inp[1];
        int[] pn = IntLine();
        UnionFind uf = new UnionFind(N+1);
        for (int i = 0; i < M; i++)
        {
            inp = IntLine().Select(v => v - 1).ToArray();
            uf.Unite(pn[inp[0]], pn[inp[1]]);
        }
        int ans = 0;
        for (int i = 1; i <= N; i++) {
            if (uf.Same(pn[i - 1], i)) ans++;
        }
        Console.WriteLine(ans);
    }
}

public class UnionFind
{
    public List<int> parent = new List<int>();

    public UnionFind(int N)
    {
        for (int i = 0; i < N; i++) parent.Add(i);
    }

    private int Root(int a)
    {
        if (parent[a] == a) return a;
        else return parent[a] = Root(parent[a]);
    }

    public void Unite(int a, int b)
    {
        a = Root(a);
        b = Root(b);
        if (a == b) return;
        parent[a] = parent[b];
    }

    public bool Same(int a, int b) { return (Root(a) == Root(b)); }
}


public class Atcoder
{
    public static void Swap<T>(ref T a, ref T b)
    {
        var t = a;
        a = b;
        b = t;
    }
    public static int GCD(int a, int b)
    {
        if (a < b) Swap(ref a, ref b);
        int d = a % b;
        while (b != 0)
        {
            d = a % b;
            a = b;
            b = d;
        }
        return a;
    }
    public static long LCM(int a, int b)
    {
        return (long)a * b / GCD(a, b);
    }
    public static string StrReverce(string s)
    {
        return new string(s.Reverse().ToArray());
    }
    public static int IntRead()
    {
        return int.Parse(Console.ReadLine());
    }
    public static bool IsPrime(int n)
    {
        if (n < 2) return false;
        if (n == 2) return true;
        if (n % 2 == 0) return false;

        //double sqrtNum = Math.Sqrt(n);
        for (int i = 3; i < n; i += 2)
        {
            if (n % i == 0) return false;
        }
        return true;
    }
    public static string[] SpRead(char c)
    {
        return Console.ReadLine().Split(c);
    }
    public static long[] LSRead()
    {
        return Console.ReadLine().Split(' ').Select(long.Parse).ToArray();
    }
    public static long Combination(int n, int r)
    {
        if (n == r) return 1;
        return
            Enumerable.Range((n - r + 1), r).ToList().Aggregate((now, next) => now * next) /
            Enumerable.Range(1, r).ToList().Aggregate((now, next) => now * next);
    }
    public static long Permutation(int n, int r)
    {
        if (n == r) return 1;
        return
            Enumerable.Range((n - r), r).ToList().Aggregate((now, next) => now * next);
    }
    public static long LongRead()
    {
        return long.Parse(Console.ReadLine());
    }
    public static long[] LongLine()
    {
        return Console.ReadLine().Split(' ').Select(long.Parse).ToArray();
    }
    public static int[] IntLine()
    {
        return Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
    }
}

Submission Info

Submission Time
Task D - Equals
User chika_haru
Language C# (Mono 4.6.2.0)
Score 400
Code Size 3363 Byte
Status AC
Exec Time 218 ms
Memory 28476 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 4
AC × 23
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt, 1_013.txt, 1_014.txt, 1_015.txt, 1_016.txt, 1_017.txt, 1_018.txt, 1_019.txt, 1_020.txt, 1_021.txt, 1_022.txt
Case Name Status Exec Time Memory
0_000.txt AC 25 ms 11348 KB
0_001.txt AC 26 ms 11348 KB
0_002.txt AC 26 ms 13396 KB
0_003.txt AC 26 ms 13396 KB
1_004.txt AC 149 ms 17440 KB
1_005.txt AC 199 ms 24376 KB
1_006.txt AC 214 ms 28476 KB
1_007.txt AC 26 ms 11348 KB
1_008.txt AC 25 ms 9300 KB
1_009.txt AC 26 ms 13396 KB
1_010.txt AC 25 ms 9300 KB
1_011.txt AC 26 ms 11348 KB
1_012.txt AC 26 ms 13396 KB
1_013.txt AC 26 ms 11348 KB
1_014.txt AC 32 ms 11348 KB
1_015.txt AC 26 ms 11316 KB
1_016.txt AC 26 ms 11316 KB
1_017.txt AC 27 ms 11316 KB
1_018.txt AC 137 ms 15492 KB
1_019.txt AC 62 ms 17120 KB
1_020.txt AC 62 ms 17120 KB
1_021.txt AC 64 ms 17120 KB
1_022.txt AC 218 ms 26428 KB