Codeforces Round #385 (Div. 2), problem: (C) Hongcow Builds A Nation Solution in C/C++

#include <stdio.h>
#include <string.h>

int c[1005], p[1005], sz[1005], gov[1005];

int find_parent(int n) {
    if (p[n] == n)
        return n;
    return p[n] = find_parent(p[n]);
}

int get_full_size(int n) {
    return n * (n-1) / 2;
}

int main(int argc, char** argv) {
    int i, n, m, k, u, v, max_size, total_free, used, total_edge;

    scanf("%d%d%d", &n, &m, &k);
    for (i = 0; i < k; i++)
        scanf("%d", &c[i]);

    for (i = 1; i <= n; i++) {
        p[i] = i;
        sz[i] = 1;
    }

    for (i = 0; i < m; i++) {
        scanf("%d%d", &u, &v);
        if (find_parent(u) != find_parent(v)) {
            sz[p[v]] += sz[p[u]];
            sz[p[u]] = 0;
            p[p[u]] = p[v];
        }
    }

    memset(gov, 0, sizeof gov);
    max_size = 0;
    for (i = 0; i < k; i++) {
        c[i] = find_parent(c[i]);
        gov[c[i]] = 1;
        if (sz[c[i]] > max_size)
            max_size = sz[c[i]];
    }

    total_free = 0;
    for (i = 1; i <= n; i++)
        if (!gov[i])
            total_free += sz[i];

    used = 0;
    total_edge = 0;
    for (i = 0; i < k; i++) {
        if (sz[c[i]] == max_size && !used) {
            total_edge += get_full_size(max_size+total_free);
            used = 1;
        }
        else
            total_edge += get_full_size(sz[c[i]]);
    }

    printf("%d\n", total_edge - m);

    return 0;
}

Father-Child AI Prompts: 10+...

As Father's Day approaches, many are looking beyond traditional...

Bunnings boss Michael Schneider...

The debate surrounding flexible working arrangements has reached a...

Scientists Discover Garnet on...

In a groundbreaking development for space exploration, an international...

Ciara Miller’s Return for...

For months, fans of Bravo’s hit reality series Summer...

10 Near-Perfect Beginner Anime...

For many newcomers, breaking into the world of anime...

Milky Mist updating books...

Tamil Nadu-based dairy major Milky Mist is actively gearing...

Father-Child AI Prompts: 10+ best prompts for royal family portraits, emotional masterpieces and stunning cinematic photo edits

As Father's Day approaches, many are looking beyond traditional gifts to find something unique and memorable. One of the most exciting trends this year...

Bunnings boss Michael Schneider warns Victoria’s work-from-home laws could divide employees

The debate surrounding flexible working arrangements has reached a boiling point in Australia, with Bunnings managing director Michael Schneider warning that Victoria's proposed work-from-home...

Scientists Discover Garnet on Mars for the First Time, Unlocking Clues to the Red Planet’s Ancient Past

In a groundbreaking development for space exploration, an international team of scientists has detected garnet on Mars for the first time. This unprecedented discovery...

Ciara Miller’s Return for ‘Summer House’ Season 11 Teased by Bravo Executive, He Thinks She’s the Future of the Show

For months, fans of Bravo’s hit reality series Summer House have been buzzing with speculation regarding the future of fan-favorite cast member Ciara Miller....

10 Near-Perfect Beginner Anime Movies No One Ever Talks About

For many newcomers, breaking into the world of anime can feel like a daunting task. With hundreds of episodes in popular series and unique...

Milky Mist updating books with FY26 numbers, to file UDRHP for IPO, says CEO Rathnam

Tamil Nadu-based dairy major Milky Mist is actively gearing up for its highly anticipated stock market debut. The company is currently in the process...

Rent Water Purifier in Delhi and Mumbai Gains Traction as Rentomojo Highlights Shift Away from High Upfront Costs and AMC Burden 2026

In major Indian metropolitan areas like Delhi and Mumbai, a significant consumer shift is underway. Traditional ownership of home appliances is increasingly being replaced...

Hepatitis A Outbreak in Canada Leaves 4 Dead, 142 Hospitalized; CDC Issues Travel Notice as Many Americans Traveling to Canada Remain Unvaccinated.

The Centers for Disease Control and Prevention (CDC) has officially issued a travel notice for Manitoba, Canada, following a severe Hepatitis A outbreak that...

Shanghai Tonight opens with nearly 200 nighttime events

The vibrant metropolis of Shanghai has officially kicked off its highly anticipated nocturnal festival, marking a major milestone in the city's cultural and economic...