結果

問題 No.1137 Circles
ユーザー parsee1053parsee1053
提出日時 2020-09-22 00:01:58
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 76,744 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-06-24 23:10:43
合計ジャッジ時間 2,312 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,272 KB
testcase_01 AC 54 ms
7,576 KB
testcase_02 AC 5 ms
6,400 KB
testcase_03 AC 28 ms
6,912 KB
testcase_04 AC 42 ms
7,296 KB
testcase_05 AC 10 ms
6,400 KB
testcase_06 AC 47 ms
7,296 KB
testcase_07 AC 23 ms
6,912 KB
testcase_08 AC 47 ms
7,404 KB
testcase_09 AC 17 ms
6,784 KB
testcase_10 AC 26 ms
6,912 KB
testcase_11 AC 29 ms
6,912 KB
testcase_12 AC 60 ms
7,808 KB
testcase_13 AC 18 ms
6,528 KB
testcase_14 AC 58 ms
7,756 KB
testcase_15 AC 19 ms
6,784 KB
testcase_16 AC 29 ms
6,912 KB
testcase_17 AC 6 ms
6,528 KB
testcase_18 AC 46 ms
7,296 KB
testcase_19 AC 19 ms
6,784 KB
testcase_20 AC 14 ms
6,656 KB
testcase_21 AC 4 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <deque>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>

using namespace std;

typedef long long ll;

#define MOD 1000000007

int main() {
  int hoge = 200000;
  int n;
  cin >> n;
  vector<int> x(n), r(n);
  for (int i = 0; i < n; ++i) {
    cin >> x[i] >> r[i];
    x[i] += hoge;
  }
  vector<ll> sum(n + 2 * hoge + 1);
  for (int i = 0; i < n; ++i) {
    sum[x[i] - r[i]]++;
    sum[x[i] + r[i]]--;
  }
  for (int i = 1; i <= n + 2 * hoge; ++i) {
    sum[i] += sum[i - 1];
  }
  ll ans = 0;
  for (int i = 0; i <= n + 2 * hoge; ++i) {
    ans = max(ans, sum[i]);
  }
  cout << ans << endl;
  return 0;
}
0