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
#include <bits/stdc++.h>
using namespace std;

using ull =unsigned long long;
int n, a;
vector<int> mapa;
int l, r;
int teraz, dlugosc;
int res;
ull ile;

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

    cin >> n;
    mapa.resize(n + 1);
    for (int i = 0; i < n; ++i)
    {
        cin >> a;
        mapa[a] = i;
    }
    res = 2 * n + 1;
    l = mapa[n];
    r = mapa[n];
    // cout << l << ' ' << r << '\n';
    ile = 1; // dla n
    for (int i = n - 1; i > 0; --i)
    {
        l = min(l, mapa[i]);
        r = max(r, mapa[i]);
        // cout << i << ' ' << l << ' ' << r << '\n';
        teraz = r - l;
        dlugosc = (n - i) * 2 - 1;
        if (dlugosc >= n)
            break;
        if (teraz <= dlugosc)
        {
            // cout << i << '/' << i + 1 << '\n';
            ile += (ull)min(n - 1 - r, dlugosc - teraz) + (ull)min(l, dlugosc - teraz) - (ull)(dlugosc - teraz) + 1;
            // cout << '!' << ile << '\n';
        }
        dlugosc = (n - i) * 2;
        if (dlugosc >= n)
            break;
        if (r - l <= dlugosc)
        {
            // cout << i << '\n';
            ile += (ull)min(n - 1 - r, dlugosc - teraz) + (ull)min(l, dlugosc - teraz) - (ull)(dlugosc - teraz) + 1;
            // cout << '?' << ile << '\n';
        }
    }
    cout << res << ' ' << ile << '\n';
}