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

using namespace std;

typedef long long ll;

vector<int> nbh[300300];
bool visited[300300];

pair<int, ll> bombs[300300];
#define a first
#define b second

set<int> dst;
ll bu[300300];

unordered_set<ll> poss;

void dfs(int v) {
    if(!visited[v]) {
        visited[v] = true;
        dst.insert(v);
        for(auto u: nbh[v]) {
            dfs(u);
        }
    }
}

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int n;
    cin >> n;

    for(int i = 0; i < n; i++) {
        int ai;
        ll ri;
        cin >> ai >> ri;
        bombs[i] = {ai, ri};
    }


    for(int i = 0; i < n; i++) {
        for(int j = 0; j < n; j++) {
            if(abs(bombs[i].a-bombs[j].a) <= bombs[i].b) {
                nbh[i].push_back(j);
            }
        }
    }


    // for(int i = 0; i < n; i++) {
    //     for(auto v: nbh[i]) {
    //         cout << v << " ";
    //     }
    //     cout << endl;
    // }

    for(int i = 0; i < n; i++) {
        dst.clear();
        for(int j = 0; j < n; j++) {
            visited[j] = false;
        }

        dfs(i);

        // for(auto j: dst) {
        //     cout << j << " ";
        // }
        // cout << endl;

        ll res = 0;
        for(int j = 0; j < n; j++) {
            if(dst.size() && *dst.begin() == j) {
                res |= 1;
                dst.erase(dst.begin());
            }
            res <<= 1;
        }
        res >>= 1;

        bu[i] = res;
    }

    for(int i = 0; i < 1<<n; i++) {
        ll summary = 0;
        for(int j = 0; j < n; j++) {
            if((i>>j)&1) {
                summary |= bu[j];
            }
        }
        poss.insert(summary);
    }

    cout << poss.size() << "\n";

    return 0;
}