結果

問題 No.1137 Circles
ユーザー umezoumezo
提出日時 2020-07-28 03:42:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 203,440 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 20:31:03
合計ジャッジ時間 3,513 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 56 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 29 ms
5,376 KB
testcase_04 AC 41 ms
5,376 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 47 ms
5,376 KB
testcase_07 AC 23 ms
5,376 KB
testcase_08 AC 50 ms
5,376 KB
testcase_09 AC 17 ms
5,376 KB
testcase_10 AC 26 ms
5,376 KB
testcase_11 AC 30 ms
5,376 KB
testcase_12 AC 62 ms
5,376 KB
testcase_13 AC 18 ms
5,376 KB
testcase_14 AC 59 ms
5,376 KB
testcase_15 AC 20 ms
5,376 KB
testcase_16 AC 30 ms
5,376 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 48 ms
5,376 KB
testcase_19 AC 19 ms
6,944 KB
testcase_20 AC 14 ms
6,944 KB
testcase_21 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

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

int main(){
  int n;
  cin>>n;
  
  vector<int> A(400020);
  
  int x,r;
  rep(i,n){
    cin>>x>>r;
    
    x+=200000;
    A[x-r]++;
    A[x+r]--;
  }
  for(int i=1;i<400020;i++) A[i]+=A[i-1];
  
  int ma=0;
  rep(i,400020) ma=max(ma,A[i]);
  
  cout<<ma<<endl;
  
  return 0;
}
0