結果

問題 No.1137 Circles
ユーザー rieaaddlreiuurieaaddlreiuu
提出日時 2024-05-28 13:51:42
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 168,268 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-12-20 20:48:43
合計ジャッジ時間 3,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
7,168 KB
testcase_01 AC 62 ms
7,168 KB
testcase_02 AC 7 ms
7,168 KB
testcase_03 AC 34 ms
7,168 KB
testcase_04 AC 45 ms
7,168 KB
testcase_05 AC 12 ms
7,168 KB
testcase_06 AC 52 ms
7,168 KB
testcase_07 AC 28 ms
7,296 KB
testcase_08 AC 55 ms
7,168 KB
testcase_09 AC 19 ms
7,168 KB
testcase_10 AC 30 ms
7,040 KB
testcase_11 AC 36 ms
7,168 KB
testcase_12 AC 72 ms
7,168 KB
testcase_13 AC 21 ms
7,168 KB
testcase_14 AC 68 ms
7,168 KB
testcase_15 AC 23 ms
7,168 KB
testcase_16 AC 34 ms
7,168 KB
testcase_17 AC 10 ms
7,168 KB
testcase_18 AC 55 ms
7,168 KB
testcase_19 AC 23 ms
7,168 KB
testcase_20 AC 18 ms
7,168 KB
testcase_21 AC 6 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
    int N;
    cin >> N;
    vector<int> circ(500001);
    vector<int> cnt(500002);
    for(int i=0;i<500001;i++){
        circ[i]=0;
    }
    int x,r;
    for(int i=0;i<N;i++){
        cin >> x >> r;
        x = x+200000;
        circ[x-r]++;
        circ[x+r]--;
    }
    cnt[0] = 0;
    for(int i=0;i<500001;i++){
        cnt[i+1] = cnt[i]+circ[i];
    }
    int max=0;
    for(int i=0;i<500002;i++){
        if(cnt[i] > max){
            max = cnt[i];
        }
    }
    cout << max << endl;
}
0