이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <string>
#include <fstream>
#include <algorithm>
#include <climits>
#include <cstdlib>
#include <cstdio>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <bitset>
#include <deque>
#include <queue>
#include <tuple>
#include <cmath>
#include <cctype>
#include <stack>
#include <cassert>
using namespace std;
using ll = long long;
int N;
pair<int, int> inp[100001];
int bit[100002]={};
set<int> pos; // where all the jumps in flags are located
void add(int k, int x) {
    while (k <= 1e5) {
        bit[k] += x;
        k += k&-k;
    }
}
void inc(int a, int b, int amt) {
    add(a, amt); add(b+1, -amt);
}
int sum(int k) {
    ll s = 0;
    while (k >= 1) {
        s += bit[k];
        k -= k&-k;
    }
    return s;
}
int get(int k) {
    return sum(k);
}
int main() {
    cin >> N;
    pos.insert(1);
    for (int i = 1; i <= N; i++) cin >> inp[i].first >> inp[i].second;
    sort(inp+1, inp+1+N);
    // idx = 1
    inc(1, inp[1].second, 1);
    pos.insert(inp[1].second+1);
    //cout << "pos, bit" << endl;
    //for (auto pp : pos) cout << pp << " "; cout << endl;
    //for (int i = 1; i <= 20; i++) cout << get(i) << " "; cout << endl;
    for (int i = 2; i <= N; i++) {
        int h = inp[i].first, k = inp[i].second;
        inc(h-k+1, h, 1);
        if (get(h) == 1) pos.insert(h+1);
        if (h-k+1 > 1) {
            if (pos.find(h-k+1) != pos.end()) {
                if (get(h-k+1)==get(h-k)) pos.erase(h-k+1);
            } else {
                auto it = pos.upper_bound(h-k+1);
                int ed = *it;
                it--;
                int fp = *it;
                int size = ed-(h-k+1);
                inc(h-k+1, ed-1, -1); inc(fp, fp+size-1, 1);
                if (get(ed) == get(ed-1)) pos.erase(ed);
                if (fp != 1 && get(fp) == get(fp-1)) pos.erase(fp);
                pos.insert(fp+size); // only if new position
            }
        }
        //cout << "debugging pos,bit" << endl;
        //for (auto pp : pos) cout << pp << " "; cout << endl;
        //for (int i = 1; i <= 20; i++) cout << get(i) << " "; cout << endl;
    }
    ll ans = 0;
    for (int i = 1; i <= 1e5; i++) {
        ll s = get(i);
        ans += s*(s-1LL)/2LL;
    }
    cout << ans << endl;
    return 0;
}
/*
11
3 2
5 3
4 1
2 1
4 3
3 2
6 6
6 6
7 1
7 2
8 2
*/
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |