CSES - Datatähti 2017 loppu - Results
Submission details
Task:Noitapeli
Sender:ollpu
Submission time:2017-01-19 14:54:11 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.03 s1details
#20.04 s1details
#30.04 s1details
#40.03 s1details
#50.04 s1details
#60.04 s2details
#70.04 s2details
#80.04 s2details
#90.04 s2details
#100.04 s2details
#110.08 s3details
#120.09 s3details
#130.06 s3details
#140.07 s3details
#150.08 s3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:21:8: warning: unused variable 'result' [-Wunused-variable]
   long result = 0;
        ^

Code

#include <iostream>
#include <vector>
using namespace std;

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);
  int n;
  cin >> n;
  vector<int> v[n];
  for (int i = 0; i < n; ++i) {
    int j;
    cin >> j;
    v[i].push_back(--j);
    v[j].push_back(i);
  }
  long dp[n+1][3];
  dp[n][0] = 0;
  dp[n][1] = 0;
  dp[n][2] = 0;
  long result = 0;
  for (int i = 0; i < n; ++i) {
    dp[i][0] = 1;
    dp[i][1] = 0;
    dp[i][2] = dp[n][1];
    for (int j : v[i]) {
      if (j < i) {
        dp[i][2] += dp[j][1];
        dp[j][1]--;
        dp[i][1]--;
      }
    }
    dp[n][2] += dp[i][2];
    dp[n][1] += dp[i][1]+i;
  }
  cout << dp[n][2] << endl;
}

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
156750

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
156750

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
151801

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
156748

Test 5

Group: 1

Verdict:

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

correct output
152040

user output
158547

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
20808337500

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
20808337500

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
20795840001

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
20808337495

Test 10

Group: 2

Verdict:

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

correct output
20795852465

user output
20812496172

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
166656666750000

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
166656666750000

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
166651666800001

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
166656666749998

Test 15

Group: 3

Verdict:

input
100000
186 62491 95379 37431 88427 93...

correct output
166651667250100

user output
166658343093540