CSES - Aalto Competitive Programming 2024 - wk2 - Homework - Results
Submission details
Task:Connect cities
Sender:hungdojan
Submission time:2024-09-07 16:29:10 +0300
Language:C++11
Status:READY
Result:
Test results
testverdicttime
#10.00 sdetails
#20.00 sdetails
#3ACCEPTED0.00 sdetails
#40.00 sdetails
#5ACCEPTED0.00 sdetails
#60.00 sdetails
#70.00 sdetails
#80.00 sdetails
#90.00 sdetails
#100.00 sdetails
#110.00 sdetails
#120.00 sdetails

Compiler report

input/code.cpp: In function 'int get_new_city(bool*, size_t)':
input/code.cpp:8:14: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
    8 |     for (; i < size; i++) {
      |            ~~^~~~~~

Code

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

typedef long long ll;

int get_new_city(bool *visited, size_t size) {
    static int i = 1;
    for (; i < size; i++) {
        if (!visited[i])
            return i;
    }
    return -1;
}

void dfs(int c, bool *v, vector<int> *adj) {
    if (v[c])
        return;
    v[c] = true;

    for (auto nc : adj[c]) {
        dfs(nc, v, adj);
    }
}

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);

    int n, m;
    cin >> n >> m;

    bool visited[n+1];
    memset(visited, 0, (n+1) * sizeof(int));

    vector<int> adj[n+1];
    int f, s;
    for (int i = 0; i < m; i++) {
        cin >> f >> s;
        adj[f].push_back(s);
        adj[s].push_back(f);
    }

    vector<pair<int, int>> new_roads;
    int p_city = 0, c_city;
    while ((c_city = get_new_city(visited, n+1)) != -1) {
        if (p_city != 0) {
            new_roads.push_back(make_pair(p_city, c_city));
        }
        p_city = c_city;
        dfs(c_city, visited, adj);
    }

    cout << new_roads.size() << "\n";
    for (auto p : new_roads) {
        cout << p.first << " " << p.second << "\n";
    }

    return 0;
}

Test details

Test 1

Verdict:

input
10 10
2 5
5 6
1 4
6 8
...

correct output
2
1 2
2 7

user output
0

Test 2

Verdict:

input
10 10
3 9
6 8
9 10
7 8
...

correct output
2
1 4
4 5

user output
0

Test 3

Verdict: ACCEPTED

input
10 10
7 9
1 7
1 3
3 4
...

correct output
0

user output
0

Test 4

Verdict:

input
10 10
4 8
5 9
4 9
2 7
...

correct output
1
1 3

user output
0

Test 5

Verdict: ACCEPTED

input
10 10
4 9
2 4
7 10
1 8
...

correct output
0

user output
0

Test 6

Verdict:

input
100000 200000
7233 22146
94937 96203
6133 10731
98737 99193
...

correct output
4785
1 2
2 3
3 4
4 5
...

user output
(empty)

Test 7

Verdict:

input
100000 200000
92950 93575
24401 88897
41796 99364
47106 50330
...

correct output
4868
1 2
2 7
7 9
9 15
...

user output
(empty)

Test 8

Verdict:

input
100000 200000
15637 76736
79169 98809
4382 86557
73383 77029
...

correct output
4683
1 9
9 20
20 27
27 28
...

user output
(empty)

Test 9

Verdict:

input
100000 200000
47932 66981
86401 99942
4353 27841
60492 67345
...

correct output
4807
1 6
6 7
7 11
11 12
...

user output
(empty)

Test 10

Verdict:

input
100000 200000
6554 44548
76413 98555
5447 59589
70166 74434
...

correct output
4786
1 2
2 18
18 21
21 27
...

user output
(empty)

Test 11

Verdict:

input
100000 1
1 2

correct output
99998
1 3
3 4
4 5
5 6
...

user output
(empty)

Test 12

Verdict:

input
10 9
2 5
5 6
1 4
6 8
...

correct output
2
1 2
2 7

user output
0