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;
}
#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;
}

More from author

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Related posts

Advertismentspot_img

Latest posts

Is Viral Kitchen Gadgets Worth Your Money Here Is Our Full Review

📢 As an Amazon Associate, I earn from qualifying purchases.Most products in this category disappoint within weeks. Cheap materials, vague instructions, and results that...

Curiosity has found the largest field of honeycomb fractures it has ever encountered on Mars. Similar polygons elsewhere preserve mud repeatedly soaked and dried...

NASA’s Curiosity rover has made an extraordinary geological discovery on the Red Planet, uncovering the largest expanse of honeycomb-shaped fractures it has ever encountered....

7 Reasons This Viral Kitchen Gadgets Is Worth Every Single Penny

📢 As an Amazon Associate, I earn from qualifying purchases.I stumbled across this while desperately trying to fix a recurring problem in my routine....

Want to stay up to date with the latest news?

We would love to hear from you! Please fill in your details and we will stay in touch. It's that simple!