CSES - Datatähti Open 2017 - Results
Submission details
Task:Witch game
Sender:marian
Submission time:2017-01-22 17:19:59 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.04 s1details
#20.05 s1details
#30.04 s1details
#40.05 s1details
#50.05 s1details
#60.00 s2details
#70.00 s2details
#80.00 s2details
#90.00 s2details
#100.00 s2details
#110.00 s3details
#120.00 s3details
#130.00 s3details
#140.00 s3details
#150.00 s3details

Code

#include <iostream>

using namespace std;

int n, x[100000], ingoing[100000];

int main() {
    cin >> n;
    for (int i = 0; i < n; ++i) {
        cin >> x[i];
        x[i]--;
        ingoing[x[i]]++;
    }

    long long res = 0;
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < n; ++j) {
            if (i == j || x[i] == j || x[j] == i) continue;
            int cur = n - 4 - ingoing[i] - ingoing[j];
            if (x[i] == x[j]) cur++;
            if (x[x[i]] == i || x[x[i]] == j) cur++;
            if (x[j] != x[i] && (x[x[j]] == i || x[x[j]] == j)) cur++;
            res += (long long) cur;
            cout << i << " " << j << " " << cur << "\n";
        }
    }
    cout << res / 6 << "\n";
}

Test details

Test 1

Group: 1

Verdict:

input
100
2 1 4 3 6 5 8 7 10 9 12 11 14 ...

correct output
156800

user output
0 2 96
0 3 96
0 4 96
0 5 96
0 6 96
...

Test 2

Group: 1

Verdict:

input
100
2 3 4 5 6 7 8 9 10 11 12 13 14...

correct output
152000

user output
0 2 95
0 3 94
0 4 94
0 5 94
0 6 94
...

Test 3

Group: 1

Verdict:

input
100
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
156849

user output
1 2 97
1 3 97
1 4 97
1 5 97
1 6 97
...

Test 4

Group: 1

Verdict:

input
100
2 3 1 5 6 4 8 9 7 11 12 10 14 ...

correct output
151968

user output
0 3 93
0 4 93
0 5 93
0 6 93
0 7 93
...

Test 5

Group: 1

Verdict:

input
100
8 98 100 62 42 36 95 70 22 49 ...

correct output
152040

user output
0 1 94
0 2 95
0 3 94
0 4 94
0 5 95
...

Test 6

Group: 2

Verdict:

input
5000
2 1 4 3 6 5 8 7 10 9 12 11 14 ...

correct output
20808340000

user output
(empty)

Test 7

Group: 2

Verdict:

input
5000
2 3 4 5 6 7 8 9 10 11 12 13 14...

correct output
20795850000

user output
(empty)

Test 8

Group: 2

Verdict:

input
5000
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
20808342499

user output
(empty)

Test 9

Group: 2

Verdict:

input
5000
2 3 1 5 6 4 8 9 7 11 12 10 14 ...

correct output
20795848337

user output
(empty)

Test 10

Group: 2

Verdict:

input
5000
283 2880 2565 3289 4160 936 39...

correct output
20795852465

user output
(empty)

Test 11

Group: 3

Verdict:

input
100000
2 1 4 3 6 5 8 7 10 9 12 11 14 ...

correct output
166656666800000

user output
(empty)

Test 12

Group: 3

Verdict:

input
100000
2 3 4 5 6 7 8 9 10 11 12 13 14...

correct output
166651667000000

user output
(empty)

Test 13

Group: 3

Verdict:

input
100000
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
166656666849999

user output
(empty)

Test 14

Group: 3

Verdict:

input
100000
2 3 1 5 6 4 8 9 7 11 12 10 14 ...

correct output
166651666966668

user output
(empty)

Test 15

Group: 3

Verdict:

input
100000
186 62491 95379 37431 88427 93...

correct output
166651667250100

user output
(empty)