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
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <sstream>
#include <set>
#include <map>
#include <vector>
#include <list>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <string>
#include <queue>
#include <bitset>		//UWAGA - w czasie kompilacji musi byc znany rozmiar wektora - nie mozna go zmienic
#include <cassert>
#include <iomanip>		//do setprecision
#include <ctime>
#include <complex>
using namespace std;

#define FOR(i,b,e) for(int i=(b);i<(e);++i)
#define FORQ(i,b,e) for(int i=(b);i<=(e);++i)
#define FORD(i,b,e) for(int i=(b)-1;i>=(e);--i)
#define REP(x, n) for(int x = 0; x < (n); ++x)

#define ST first
#define ND second
#define PB push_back
#define MP make_pair
#define LL long long
#define ULL unsigned LL
#define LD long double

const double pi = 3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342;

#define MR 1050000
#define MOD 1000000007

int c[MR], d[MR];

pair < int, int > dp[MR];

struct
{
	int p, k;	//poczatek, koniec
	int v;		//max/min wartosc na przedziale
}treeMX[2*MR], treeMN[2*MR];

int p,k;

void buildMX(int nr, int p, int k)
{
	treeMX[nr].p = p;
	treeMX[nr].k = k;	
	if(p < k)
	{
		buildMX(2*nr, p, (p+k)/2);
		buildMX(2*nr+1, (p+k)/2+1, k);
		treeMX[nr].v = max(treeMX[2*nr].v, treeMX[2*nr+1].v);
	}
	else treeMX[nr].v = c[p];
}//buildMX
//zwroc wartosc dajaca max na przedziale p..k
int ansMX(int nr)
{
	if(treeMX[nr].p > k || treeMX[nr].k < p)
		return 0;
	if(treeMX[nr].p < p || treeMX[nr].k > k)
		return max(ansMX(2*nr), ansMX(2*nr+1));
	return treeMX[nr].v;
}//ans

void buildMN(int nr, int p, int k)
{
	treeMN[nr].p = p;
	treeMN[nr].k = k;	
	if(p < k)
	{
		buildMN(2*nr, p, (p+k)/2);
		buildMN(2*nr+1, (p+k)/2+1, k);
		treeMN[nr].v = min(treeMN[2*nr].v, treeMN[2*nr+1].v);
	}
	else treeMN[nr].v = d[p];
}//buildMN
//zwroc wartosc dajaca min na przedziale p..k
int ansMN(int nr)
{
	if(treeMN[nr].p > k || treeMN[nr].k < p)
		return MR;
	if(treeMN[nr].p < p || treeMN[nr].k > k)
		return min(ansMN(2*nr), ansMN(2*nr+1));
	return treeMN[nr].v;
}//ans

int main()
{
	int n;
	scanf("%d", &n);
	FORQ(i,1,n) scanf("%d%d", &c[i], &d[i]);
	int size = 1;
	while(size < n) size <<= 1;
	buildMX(1,1,size);
	buildMN(1,1,size);
	dp[0].ND = 1;	//0 zespolow mozemy stworzyc na 1 sposob
	FORQ(i,1,n) dp[i].ST = -2;
	FORQ(i,1,n)
	{
		k = i;		
		int dl = c[i];	// taka musi byc minimalna dlugosc zespolu
		int maxV = -1;
		int maxDl = d[i];	//gdzie skonczyc sprawdzanie
		int ileS = 0;		// ile sposobow
		while(dl <= maxDl)
		{
			// spr czy w ogole mozna tutaj konczyc zespol
			p = i-dl+1;
			if(p < 1)
			{
				break;
			}
			// czy nie mozemy poprawic maks
			if(dp[p-1].ST < maxV)
			{
				dl++;
				continue;
			}
			// czy minimalne maksimum pozwala nam sprawdzac
			if(ansMN(1) < dl)
			{
				break;
			}
			int pom = ansMX(1);
			if(pom > dl)
			{
				dl = pom;
				continue;
			}
			// spr co sie dzieje
			if(dp[p-1].ST == maxV)
			{	//zwieksz liczbe sposobow
				ileS = ileS + dp[p-1].ND;
				if(ileS > MOD) ileS -= MOD;			
			}
			else
			{	//zwieksz maks
				maxV = dp[p-1].ST;
				ileS = dp[p-1].ND;
			}
			dl++;
		}
		if(maxV >= 0)
		{
			dp[i].ST = maxV+1;
			dp[i].ND = ileS;
		}
	}
	if(dp[n].ST <= 0) printf("NIE\n");
	else printf("%d %d\n", dp[n].ST, dp[n].ND);
	return 0;
}