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
#include <bits/stdc++.h>
using namespace std;
#define nd second
#define st first
#define pii pair<int,int>
#define pb push_back
typedef long long ll;
map<int,int>m;

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(); cout.tie();
    int n;
    cin>>n;
    vector<int>v(n);
    for(int i=0; i<n; i++)
        cin>>v[i];
    
    for(int i=0; i<n; i++)
        m[v[i]]=i;

    int l=1e9, r=-1e9;
    vector<int>def(n+1);
    for(int i=0; i<n; i++){
        //szukam n-i
        int cur=n-i;
        int ind=m[cur];
        l=min(l, ind);
        r=max(r,ind);
     
        if((r-l)==i){
            def[r-l+1]=1;
        }
    }
    vector<int>dp(n+1);
    dp[1]=def[1];
    dp[2]=def[2];
    dp[n]=def[n];
    for(int i=3; i<n; i++)
        dp[i]=dp[i-1]+2-def[i];
    
    int cnt=0;
    for(int i=1; i<=n; i++) 
        cnt+=dp[i]; //cout<<"i: "<<dp[i]<<'\n';
    cout<<2*n+1<<" "<<cnt<<'\n';
}