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
#include <bits/stdc++.h>
using namespace std;

const int MAX = 25;
bool dasie[1<<MAX];
long long tab[MAX];
long long zasieg[MAX];
queue<int> wybuchnij;
bool wybuchniete[MAX];

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int n;
	cin >> n;
	for(int i=0;i<n;i++) {
		cin >> tab[i] >> zasieg[i];
	}
	for(int i=0;i<(1<<n);i++) {
		int mask = 0;
		for(int j=0;j<n;j++) 
			wybuchniete[j] = false;
		for(int j=0;j<n;j++) {
			if(i & (1<<j)) {
				wybuchniete[j] = true;
				wybuchnij.push(j);
			}
		}
		while(wybuchnij.size()) {
			int bum = wybuchnij.front();
			wybuchnij.pop();
			mask |= (1<<bum);
			for(int j=bum-1;j>=0 and tab[j]>=tab[bum]-zasieg[bum];j--) {
				if(!wybuchniete[j]) {
					wybuchniete[j] = true;
					wybuchnij.push(j);
				}
			}
			for(int j=bum+1;j<n and tab[j]<=tab[bum]+zasieg[bum];j++) {
                                if(!wybuchniete[j]) {
                                        wybuchniete[j] = true;
                                        wybuchnij.push(j);
                                }
                        }
		}
		dasie[mask] = true;
	}
	int result = 0;
	for(int i=0;i<(1<<MAX);i++)
		if(dasie[i])
			result++;
	cout << result << "\n";
}