1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include <iostream>
#include <algorithm>
using namespace std;

long long n, maks, tab[1000010], tabs[1000010], mediana, spr[1000010], medianas, zlicz;

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

    cin>>n;
    maks=1+n*2;
    if(n==1)
    {
        zlicz=1;
        cin>>tab[0];
        cout<<maks<<" "<<1;
        return 0;
    }
    else
        zlicz=1;
    for(int i=0; i<n; i++)
    {
        cin>>tab[i];
        tabs[i]=tab[i];
    }
    sort(tabs, tabs+n);
    if(n%2==1)
    {
        mediana=tabs[(n-1)/2]*2;
    }
    else
        mediana=tabs[(n-1)/2]+tabs[(n-1)/2+1];
    //cout<<mediana;
    for(int i=0; i<n; i++)
    {
        for(int j=i; j<n; j++)
        {
            //cout<<i<<" "<<j<<endl;
            int p=0;
            for(int o=i; o<=j; o++)
            {
                spr[p]=tab[o];
                p++;
            }
            sort(spr, spr+(p));
            /*for(int o=0; o<p; o++)
            {
                cout<<spr[o];
            }
            cout<<endl;
            cout<<p<<endl;*/
            if(p%2==1)
            {
                medianas=spr[(p-1)/2]*2;
            }
            else
                medianas=spr[(p-1)/2]+spr[(p-1)/2+1];

            if(medianas>mediana)
            {
                //cout<<medianas<<" "<<mediana<<" "<<p+medianas<<" "<<maks<<endl;
                if(p+(medianas)==maks)
                {
                    zlicz++;
                    //cout<<"zlicz "<<zlicz<<endl;
                }
            }

        }
    }
    cout<<maks<<" "<<zlicz;
    return 0;
}