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
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>

int n,x;
int tab[1000001];
int main(){
    std::ios_base::sync_with_stdio(0);
    std::cin>>n;
    for(int i=0;i<n;i++){
        std::cin>>x;
        tab[x]=i;
    }
    int fi=tab[n];
    int la=tab[n];
    long long res=1;
    int dl=1;
    int pp,lp;
    for(int i=n-1;i>=1;i--){
        int p=tab[i];
        fi=std::min(fi,p);
        la=std::max(la,p);
        dl++;
        pp=std::max(la-dl+1,0);
        lp=std::min(fi,n-dl);
        if(lp>=pp)
            res+=lp-pp+1;
        
    //std::cout<<res<<" "<<fi<<" "<<la<<std::endl;
        dl++;
        pp=std::max(la-dl+1,0);
        lp=std::min(fi,n-dl);
        if(lp>=pp)
            res+=lp-pp+1;
        
    //std::cout<<res<<std::endl;
        
    }
    std::cout<<n*2+1<<" "<<res<<std::endl;
    return 0;
}