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
#include <iostream>
#include <cstdint>
#include <vector>
#include <algorithm>
#include <iterator>
#include <string>


using namespace std;

constexpr int maxx = 2'000'000'000;

constexpr int lcm = 840;

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

    int n;
    cin>>n;

    vector<int> a(n+1,0);
    vector<int> perm(n+1,0);

    for (int i=1; i<=n;i++){
        int ai;
        cin>>ai;
        a[i]=ai;
        perm[ai]=i;
    }

    int brzegp = perm[n];
    int brzegl = perm[n];
    int64_t total = 1;
    for (int dlugosc = 2; dlugosc<=n; dlugosc++){
        if (dlugosc%2==0){
            int ind = perm[n-dlugosc/2];
            if (ind > brzegp)
                brzegp = ind;
            else if (ind < brzegl)
                brzegl = ind;
        }

        int dl_przedz = brzegp-brzegl +1;
        if (dlugosc >=dl_przedz){
            int min_poczatek = max(1, brzegp - dlugosc+1);
            int max_poczatek = min(brzegl, n - dlugosc+1);
            total += max_poczatek - min_poczatek+1;
        }

    }


    cout<<2*n+1<<" "<<total<<endl;


    return 0;
}