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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#include <unordered_set>
#include <unordered_map>
#include <functional>
#include <algorithm>
//#include <iostream>
#include <numeric>
#include <cassert>
#include <cstring>
#include <cstdio>
#include <vector>
#include <queue>
//#include <cmath>
#include <set>
#include <map>
using namespace std;

typedef long long LL;
typedef unsigned long long ULL;
typedef vector<int> VI;
typedef vector<LL> VLL;
typedef vector<VI> VVI;
typedef pair<int,int> PII;
typedef vector<PII> VPII;

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

#define PB push_back
#define ALL(V) (V).begin(),(V).end()
#define SIZE(V) ((int)(V).size())

#define MP make_pair
#define ST first
#define ND second

#define DBGa

#ifdef DBG
	#define debug(...) fprintf(stderr, __VA_ARGS__)
#else
	#define debug(...)
#endif

int __stmp;
#define scanf __stmp=scanf


const int INF = 1000000001;
const int MOD = 1000000007;
const int MAX = 1000010;

void addmod(int &a, int b) {
	a += b; if(a >= MOD) a -= MOD;
}

void update(PII &a, PII b) {
	if(a.ST == b.ST) addmod(a.ND, b.ND);
	else if(a.ST < b.ST) a = b;
}

VI S[MAX];
deque<PII> BS, AS;

class tree {
public:
	void init(int n) {
		for(size=1;size<n;size*=2);
		val.assign(2*size+3, PII(-INF, 0));
	}
	void set(int ind, PII v) {
		ind += size;
		val[ind] = v;
		for(ind/=2;ind;ind/=2)
		{
			val[ind] = val[2*ind];
			update(val[ind], val[2*ind+1]);
		}
	}
	void unset(int ind) {
		ind += size;
		val[ind] = PII(-INF, 0);
		for(ind/=2;ind && val[ind].ST >= 0;ind/=2)
			_update(ind);
	}
	void get_first() {
		if(val[1].ST < 0) return;
		_get_first(1);
		// int v = 1;
		// while(v < size)
		// {
		// 	if(val[2*v].ST >= 0)
		// 		v = 2*v;
		// 	else
		// 		v = 2*v+1;
		// }
		// return v-size;
	}
	bool _get_first(int v) {
		if(v < size) {
			if(val[2*v].ST >= 0 && _get_first(2*v)) {
				_update(v);
				return true;
			}
			if(val[2*v+1].ST >= 0 && _get_first(2*v+1)) {
				_update(v);
				return true;
			}
			_update(v);
			return false;
		} else {
			v -= size;
			int diff = (--upper_bound(ALL(AS), PII(v, size)))->ND - (v-AS[0].ST+1);
			if(diff > 0) {
				val[v+size] = PII(-INF, 0);
				if(AS[0].ST-diff >= 0)
					S[AS[0].ST-diff].PB(v);
				return false;
			} else return true;
		}
	}

	void get_last() {
		if(val[1].ST < 0) return;
		_get_last(1);
	}
	bool _get_last(int v) {
		if(v < size) {
			if(val[2*v+1].ST >= 0 && _get_last(2*v+1)) {
				_update(v);
				return true;
			}
			if(val[2*v].ST >= 0 && _get_last(2*v)) {
				_update(v);
				return true;
			}
			_update(v);
			return false;
		} else {
			v -= size;
			PII t;
			t.ST = (--upper_bound(ALL(AS), PII(v, size)))->ND;
			t.ND = (--upper_bound(ALL(BS), PII(v, size)))->ND;
			if(t.ST > t.ND || v-AS[0].ST+1 > t.ND) {
				val[v+size] = PII(-INF, 0);
				return false;
			} else return true;
		}
		// if(val[1].ST < 0) return -1;
		// int v = 1;
		// while(v < size)
		// {
		// 	if(val[2*v+1].ST >= 0)
		// 		v = 2*v+1;
		// 	else
		// 		v = 2*v;
		// }
		// return v-size;
	}
	PII query() {
		return val[1];
	}
private:
	int size;
	VPII val;
	void _update(int ind) {
		val[ind] = val[2*ind];
		update(val[ind], val[2*ind+1]);
	}
};

int n;
PII dp[MAX];
int A[MAX], B[MAX];
tree T;

int main(int argc, char *argv[]) {
	scanf("%d", &n);
	T.init(n);
	REP(i,n)
	{
		scanf("%d %d", A+i, B+i);
		if(i-A[i]+1 >= 0)
			S[i-A[i]+1].PB(i);
	}
	dp[n] = PII(0, 1);
	for(int i=n-1;i>=0;i--)
	{
		while(!AS.empty() && AS.front().ND <= A[i]) AS.pop_front();
		AS.push_front({i, A[i]});
		while(!BS.empty() && BS.front().ND >= B[i]) BS.pop_front();
		BS.push_front({i, B[i]});
		for(int id : S[i])
		{
			int diff = (--upper_bound(ALL(AS), PII(id, n)))->ND - (id-i+1);
			if(diff > 0) {
				if(i-diff >= 0)
					S[i-diff].PB(id);
			} else {
				if(dp[id+1].ST >= 0) {
					T.set(id, dp[id+1]);
				}
			}
		}
		{
			VI tmp;
			S[i].swap(tmp);
		}
		
		T.get_last();
		// while(1)
		// {
		// 	int j = T.get_last();
		// 	if(j == -1) break;
		// 	PII t;
		// 	t.ST = (--upper_bound(ALL(AS), PII(j, n)))->ND;
		// 	t.ND = (--upper_bound(ALL(BS), PII(j, n)))->ND;
		// 	if(t.ST > t.ND || j-i+1 > t.ND)
		// 		T.unset(j);
		// 	else break;
		// }
		T.get_first();
		// while(1)
		// {
		// 	int j = T.get_first();
		// 	if(j == -1) break;
		// 	int diff = (--upper_bound(ALL(AS), PII(j, n)))->ND - (j-i+1);
		// 	if(diff > 0) {
		// 		T.unset(j);
		// 		if(i-diff >= 0)
		// 			S[i-diff].PB(j);
		// 	} else break;
		// }
		dp[i] = T.query();
		dp[i].ST++;
	}
	if(dp[0].ST <= 0) printf("NIE\n");
	else printf("%d %d\n", dp[0].ST, dp[0].ND);
	return 0;
}