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
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
  int n;
  cin >> n;
  
  vector< pair<int, int> > oceny;
  oceny.reserve(n);

  int tmp;
  for(int i = 0; i < n; i++) {
	  cin >> tmp;
	  oceny.push_back( pair<int,int>(tmp, i) );
  }
  sort( oceny.begin(), oceny.end() );
  
  long long res = 1;
  int l, r;
  l = r = oceny[n-1].second;
  
  for(int i = 2*n-1; i >= n+1; i--) {  // i - 2x mediana
    if(i%2==1) {
		// trzeba dodac (i-1)/2
		int idx = (i-1)/2 - 1;
		if(l > oceny[idx].second)
			l = oceny[idx].second;
		if(r < oceny[idx].second)
			r = oceny[idx].second;
	}
	int potrzeba = i - n - 1;
	
	if(potrzeba > l + n-1-r)
		continue;
	
	
	// po lewej przynajmniej max(potrzeba-n-1-r,0)
	// po lewej najwyzej min(l, potrzeba)
	
	res += min(l, potrzeba) - max(potrzeba-(n-1-r),0) + 1;
	// (l) wolnych
	// (n-1-r) wolnych
	// z lewej od potrzeba - (n-1-r) do 
  }
  

  cout << 2*n +1 << " " << res << endl;
  return 0;
}