結果

問題 No.1137 Circles
ユーザー forest3forest3
提出日時 2020-08-05 11:04:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 2,657 ms
コンパイル使用メモリ 167,960 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-09-16 03:49:23
合計ジャッジ時間 3,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main()
{
	int N;
	cin >> N;
	vector<int> x( N );
	vector<int> r( N );
	for( int i = 0; i < N; i++ ) {
		cin >> x[i] >> r[i];
	}

	const int n = 100000;
	vector<int> a( 4 * n + 1 );
	for( int i = 0; i < N; i++ ) {
		int l = x[i] - r[i] + 2 * n;
		int rr = x[i] + r[i] + 2 * n;
		a[l]++;
		a[rr]--;
	}

	for( int i = 0; i < 4 * n + 1 - 1; i++ ) {
		a[i + 1] += a[i];
	}
	int ans = 0;
	for( int i = 0; i < 4 * n + 1; i++ ) {
		ans = max( ans, a[i] );
	}

	cout << ans << endl;
}
0