結果

問題 No.1137 Circles
ユーザー forest3forest3
提出日時 2020-08-05 10:34:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 1,511 ms
コンパイル使用メモリ 167,884 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-09-16 02:08:20
合計ジャッジ時間 4,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 53 ms
5,504 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 28 ms
5,376 KB
testcase_04 AC 40 ms
5,376 KB
testcase_05 AC 9 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 22 ms
5,376 KB
testcase_08 AC 47 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 25 ms
5,376 KB
testcase_11 AC 29 ms
5,376 KB
testcase_12 AC 60 ms
5,504 KB
testcase_13 AC 17 ms
5,376 KB
testcase_14 AC 57 ms
5,504 KB
testcase_15 AC 19 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 6 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 18 ms
5,376 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

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 + 2 );
	for( int i = 0; i < N; i++ ) {
		int l = x[i] - r[i] + 2 * n;
		int rr = x[i] + r[i] + 1 + 2 * n;
		a[l]++;
		a[rr]--;
	}

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

	cout << ans << endl;
}
0