結果

問題 No.602 隠されていたゲーム2
コンテスト
ユーザー hiroakie
提出日時 2017-12-18 21:12:54
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 833 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 443 ms
コンパイル使用メモリ 91,532 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-05-26 06:50:22
合計ジャッジ時間 1,501 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>
using namespace std;
typedef long long int ll;
const ll N = 100000;
ll d[N],n,cp,src[2][N],lst[2];

int main() {
	cin >> n;
	for (int i = 0; i < n; i++)
	{
		scanf("%d", d + i);
		src[d[i] % 2][lst[d[i] % 2]] = d[i];
		lst[d[i] % 2]++;
	}
	sort(d , d + n);
	sort(src[0], src[0] + lst[0]);
	sort(src[1], src[1] + lst[1]);
	ll x, y; cin >> x >> y;
	cp = abs(x) + abs(y);
	if (cp == 0) { cout << 0 << endl; goto end; }
	if (find(d, d + n, cp) - d < n) { cout << 1 << endl; goto end; }
	for (int i = 0; i < n; i++) {
		ll lb = abs(cp - d[i]), ub = (cp + d[i]);
		ll ni = lower_bound(src[lb % 2], src[lb % 2] + lst[lb % 2], lb) - src[lb % 2];
		if (ni<lst[lb%2]&&src[lb%2][ni] <= ub)
		{ cout << 2 << endl; goto end; }
	}
	cout << -1 << endl;
end:;
	return 0;
}
0