結果

問題 No.1137 Circles
ユーザー MisterMister
提出日時 2020-08-01 09:14:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,114 bytes
コンパイル時間 874 ms
コンパイル使用メモリ 96,532 KB
実行使用メモリ 12,628 KB
最終ジャッジ日時 2024-07-07 15:10:38
合計ジャッジ時間 3,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 123 ms
11,664 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 56 ms
7,720 KB
testcase_04 AC 84 ms
9,800 KB
testcase_05 AC 11 ms
5,376 KB
testcase_06 AC 97 ms
10,648 KB
testcase_07 AC 38 ms
6,784 KB
testcase_08 AC 103 ms
10,924 KB
testcase_09 AC 23 ms
5,632 KB
testcase_10 AC 44 ms
7,296 KB
testcase_11 AC 53 ms
7,860 KB
testcase_12 AC 137 ms
12,628 KB
testcase_13 AC 26 ms
5,632 KB
testcase_14 AC 132 ms
12,452 KB
testcase_15 AC 29 ms
6,016 KB
testcase_16 AC 53 ms
7,732 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 98 ms
10,620 KB
testcase_19 AC 27 ms
6,016 KB
testcase_20 AC 18 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <map>

template <class T>
std::map<T, int> compress(std::vector<T>& v) {
    std::sort(v.begin(), v.end());
    v.erase(std::unique(v.begin(), v.end()), v.end());

    std::map<T, int> rev;
    for (int i = 0; i < (int)v.size(); ++i) rev[v[i]] = i;
    return rev;
}

void solve() {
    int n;
    std::cin >> n;

    std::vector<std::pair<int, int>> ps(n);
    std::vector<int> xs;
    for (auto& p : ps) {
        int x, r;
        std::cin >> x >> r;
        x *= 2, r *= 2;

        p.first = x - r + 1;
        p.second = x + r;

        xs.push_back(p.first);
        xs.push_back(p.second);
    }

    auto revx = compress(xs);
    int m = xs.size();

    std::vector<int> imos(m + 1, 0);
    for (auto& p : ps) {
        ++imos[revx[p.first]];
        --imos[revx[p.second]];
    }

    for (int i = 0; i < m; ++i) {
        imos[i + 1] += imos[i];
    }

    std::cout << *std::max_element(imos.begin(), imos.end()) << "\n";
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0