結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,296 KB
testcase_01 AC 58 ms
7,168 KB
testcase_02 AC 7 ms
7,168 KB
testcase_03 AC 31 ms
7,168 KB
testcase_04 AC 44 ms
7,168 KB
testcase_05 AC 12 ms
7,168 KB
testcase_06 AC 49 ms
7,168 KB
testcase_07 AC 25 ms
7,168 KB
testcase_08 AC 52 ms
7,168 KB
testcase_09 AC 18 ms
7,168 KB
testcase_10 AC 28 ms
7,168 KB
testcase_11 AC 31 ms
7,168 KB
testcase_12 AC 64 ms
7,168 KB
testcase_13 AC 20 ms
7,296 KB
testcase_14 AC 61 ms
7,168 KB
testcase_15 AC 22 ms
7,168 KB
testcase_16 AC 32 ms
7,168 KB
testcase_17 AC 8 ms
7,168 KB
testcase_18 AC 51 ms
7,296 KB
testcase_19 AC 21 ms
7,168 KB
testcase_20 AC 17 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