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
#include <bits/stdc++.h>
using namespace std;
constexpr int maxN = 1e6+7;

int n,lewo=1e9,prawo,t[maxN],indeks[maxN];
long long ans;

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

cin>>n;
for(int i=1;i<=n;i++)
{
    cin>>t[i];
    indeks[t[i]] = i;
}
int konieczna = n;
for(int dl=1;dl<=n;dl++)
{
    int id = indeks[konieczna];
    if(dl & 1)
        konieczna--;
    lewo = min(lewo,id);
    prawo = max(prawo,id);
    if(prawo - lewo + 1 > dl)
        continue;
    int dobrac = dl-(prawo-lewo+1), po_lewej = lewo-1, po_prawej = n-prawo;
    if(po_lewej >= dobrac && po_prawej >= dobrac)
        ans += dobrac+1;
    else if(po_lewej >= dobrac && po_prawej < dobrac)
        ans += po_prawej+1;
    else if(po_prawej >= dobrac && po_lewej < dobrac)
        ans += po_lewej+1;
    else
    {
        int mini_po_lewej = dobrac - po_prawej;
        ans += po_lewej - mini_po_lewej + 1;
    }
    //cout<<dl<<"     "<<lewo<<' '<<prawo<<' '<<dobrac<<"       "<<ans<<endl;
}
cout<<n*2+1<<' '<<ans;
}

/*

5
1 4 3 5 2

*/