CSES - Datatähti 2021 alku - Results
Submission details
Task:Alitaulukot
Sender:CursedTomb
Submission time:2020-10-09 15:50:00 +0300
Language:C++17
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.01 s1, 2, 3details
#20.01 s1, 2, 3details
#30.01 s1, 2, 3details
#40.01 s1, 2, 3details
#50.01 s1, 2, 3details
#60.01 s2, 3details
#70.01 s2, 3details
#80.01 s2, 3details
#90.01 s2, 3details
#100.01 s2, 3details
#110.06 s3details
#120.08 s3details
#130.10 s3details
#14--3details
#150.09 s3details
#16--3details
#17--3details

Code

#include <bits/stdc++.h>
using namespace std;
vector<int> v;
int x,y,suurin,pienin,l;
int main()
{
    cin >> x >> y;
    v.resize(x);
    for(int i =0;i<x;i++) cin >> v[i];
    int a=l=0;
    suurin = v[0];
    pienin = v[0];
    long long summa = 0;
    for(int i = 0;i<2*x;i++)
    {
        suurin = max(suurin,v[l]);
        pienin = min(pienin, v[l]);
        if(suurin-pienin<=y)
        {
            summa+=l-a+1;
            l+=1;
        }
        else
        {
            //cout << *max_element(v.begin()+a,v.begin()+l+1)<< "h" << "\n";
            while(1)
            {
                auto tmpMin = min_element(v.begin()+a,v.begin()+l+1);
                auto tmpMax = max_element(v.begin()+a,v.begin()+l+1);

                if(*tmpMax-*tmpMin>y)
                {
                    if(tmpMin-v.begin()+1<=l) {a=tmpMin-v.begin()+1;}
                    else a+=1;
                    continue;
                }
                suurin = *tmpMax;
                pienin = *tmpMin;
                break;
            }
        }
cout << a<< " " << l << " " << pienin << " " << suurin << " " << "\n";
        if(l==x) break;
    }
    cout << summa << "\n";

    //system("pause");
    return 0;
}

Test details

Test 1

Group: 1, 2, 3

Verdict:

input
100 0
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
5050

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

Test 2

Group: 1, 2, 3

Verdict:

input
100 2
5 5 2 4 3 5 3 4 3 2 3 4 5 4 4 ...

correct output
317

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

Test 3

Group: 1, 2, 3

Verdict:

input
100 10
71 60 61 96 25 10 10 9 84 85 1...

correct output
119

user output
0 1 71 71 
1 1 60 60 
1 2 60 60 
1 3 60 61 
3 3 96 96 
...

Test 4

Group: 1, 2, 3

Verdict:

input
100 990000000
111122929 961821360 578238211 ...

correct output
4006

user output
0 1 111122929 111122929 
0 2 111122929 961821360 
0 3 111122929 961821360 
0 4 29272319 961821360 
0 5 29272319 961821360 
...

Test 5

Group: 1, 2, 3

Verdict:

input
100 1000000000
553190572 453407680 667300705 ...

correct output
5050

user output
0 1 553190572 553190572 
0 2 453407680 553190572 
0 3 453407680 667300705 
0 4 453407680 667300705 
0 5 453407680 667300705 
...

Test 6

Group: 2, 3

Verdict:

input
2000 0
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
2001000

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

Test 7

Group: 2, 3

Verdict:

input
2000 2
4 4 1 4 2 3 1 2 1 3 5 2 2 4 4 ...

correct output
6340

user output
0 1 4 4 
0 2 4 4 
2 2 1 1 
2 3 1 1 
3 3 4 4 
...

Test 8

Group: 2, 3

Verdict:

input
2000 10
65 88 33 88 41 10 17 38 22 3 8...

correct output
2413

user output
0 1 65 65 
1 1 88 88 
1 2 88 88 
2 2 33 33 
2 3 33 33 
...

Test 9

Group: 2, 3

Verdict:

input
2000 999000000
746120950 772769620 721488968 ...

correct output
1287776

user output
0 1 746120950 746120950 
0 2 746120950 772769620 
0 3 721488968 772769620 
0 4 721488968 793494482 
0 5 447854342 793494482 
...

Test 10

Group: 2, 3

Verdict:

input
2000 1000000000
621947980 510355354 756705418 ...

correct output
2001000

user output
0 1 621947980 621947980 
0 2 510355354 621947980 
0 3 510355354 756705418 
0 4 390335766 756705418 
0 5 390335766 829929159 
...

Test 11

Group: 3

Verdict:

input
100000 0
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
5000050000

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

Test 12

Group: 3

Verdict:

input
100000 2
3 3 1 3 3 1 1 5 1 2 5 4 1 3 1 ...

correct output
317066

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

Test 13

Group: 3

Verdict:

input
100000 10
10 3 6 3 43 60 5 48 15 27 86 4...

correct output
123292

user output
0 1 10 10 
0 2 3 10 
0 3 3 10 
0 4 3 10 
4 4 43 43 
...

Test 14

Group: 3

Verdict:

input
100000 999990000
460235639 963048588 47270983 3...

correct output
4946886742

user output
(empty)

Test 15

Group: 3

Verdict:

input
100000 1000000000
885457070 18257718 927615960 3...

correct output
5000050000

user output
0 1 885457070 885457070 
0 2 18257718 885457070 
0 3 18257718 927615960 
0 4 18257718 927615960 
0 5 18257718 927615960 
...

Test 16

Group: 3

Verdict:

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

correct output
3750075000

user output
(empty)

Test 17

Group: 3

Verdict:

input
100000 50000
100000 99999 99998 99997 99996...

correct output
3750075000

user output
(empty)