CSES - E4590 2018 2 - Results
Submission details
Task:Card game
Sender:lautat
Submission time:2018-09-22 15:47:16 +0300
Language:C++
Status:READY
Result:
Test results
testverdicttime
#10.02 sdetails
#20.01 sdetails
#30.01 sdetails
#40.02 sdetails
#50.02 sdetails
#60.02 sdetails
#70.03 sdetails
#80.08 sdetails
#90.08 sdetails
#100.09 sdetails
#110.02 sdetails
#12ACCEPTED0.01 sdetails
#13ACCEPTED0.01 sdetails
#14UNKNOWN--details
#15UNKNOWN--details

Code

#include <algorithm>
#include <iostream>
#include <vector>

using std::cin;
using std::cout;
using std::endl;
using std::ios;
using std::max;
using std::vector;


int main() {
    ios::sync_with_stdio(false);
    uint32_t n;
    cin >> n;

    if (n < 3) {
        cout << 0 << endl;
        return 0;
    }

    uint32_t b;
    cin >> b >> b;

    uint32_t flipped[4] = {0, 0, 0, 0};
    uint32_t unflipped[4] = {0, 0, 0, 0};

    for (uint32_t i = 3; i < n; i++) {
        flipped[0] = flipped[1];
        flipped[1] = flipped[2];
        flipped[2] = flipped[3];
        unflipped[0] = unflipped[1];
        unflipped[1] = unflipped[2];
        unflipped[2] = unflipped[3];

        flipped[3] = max(flipped[0], unflipped[0]) + b;
        unflipped[3] = max(flipped[1], unflipped[1]);

        cin >> b;
    }

    cout << max(unflipped[2], unflipped[3]) << endl;

    return 0;
}

Test details

Test 1

Verdict:

input
5
9 4 1 6 6

correct output
6

user output
0

Test 2

Verdict:

input
6
5 6 2 4 10 1

correct output
16

user output
6

Test 3

Verdict:

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

correct output
26

user output
16

Test 4

Verdict:

input
100
1 8 8 5 7 10 9 4 8 10 6 3 8 7 ...

correct output
243

user output
224

Test 5

Verdict:

input
1000
10 7 5 6 5 2 5 3 2 2 1 6 8 7 8...

correct output
2230

user output
2101

Test 6

Verdict:

input
10000
9 1 8 2 6 5 1 3 3 10 6 3 9 3 1...

correct output
22363

user output
20981

Test 7

Verdict:

input
100000
5 5 4 6 8 7 9 6 3 2 5 8 7 3 5 ...

correct output
226636

user output
213231

Test 8

Verdict:

input
1000000
5 8 5 7 9 1 9 10 3 6 1 8 3 9 7...

correct output
2259395

user output
2126068

Test 9

Verdict:

input
1000000
4 5 3 5 4 3 6 7 10 6 3 9 7 9 1...

correct output
2260761

user output
2126881

Test 10

Verdict:

input
1000000
10 3 6 7 7 10 4 4 5 2 9 4 6 10...

correct output
2260407

user output
2125861

Test 11

Verdict:

input
3
87 3 123

correct output
3

user output
0

Test 12

Verdict: ACCEPTED

input
2
175 95

correct output
0

user output
0

Test 13

Verdict: ACCEPTED

input
1
42

correct output
0

user output
0

Test 14

Verdict: UNKNOWN

input
1000000
1000 1000 1000 1000 1000 1000 ...

correct output
333333000

user output
(not available)

Test 15

Verdict: UNKNOWN

input
1000000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
333333

user output
(not available)