結果

問題 No.602 隠されていたゲーム2
ユーザー FF256grhyFF256grhy
提出日時 2017-12-02 02:12:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 2,694 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 177,436 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 11:32:03
合計ジャッジ時間 3,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 9 ms
5,376 KB
testcase_17 AC 17 ms
5,376 KB
testcase_18 AC 41 ms
5,376 KB
testcase_19 AC 51 ms
5,376 KB
testcase_20 AC 35 ms
5,376 KB
testcase_21 AC 33 ms
5,376 KB
testcase_22 AC 49 ms
5,376 KB
testcase_23 AC 43 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long   signed int LL;
typedef long long unsigned int LU;

#define incID(i, l, r) for(int i = (l)    ; i <  (r); i++)
#define incII(i, l, r) for(int i = (l)    ; i <= (r); i++)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); i--)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); i--)
#define  inc(i, n) incID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define  dec(i, n) decID(i, 0, n)
#define dec1(i, n) decII(i, 1, n)

#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))

#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
#define PQ priority_queue

#define  ALL(v)  v.begin(),  v.end()
#define RALL(v) v.rbegin(), v.rend()
#define  FOR(it, v) for(auto it =  v.begin(); it !=  v.end(); ++it)
#define RFOR(it, v) for(auto it = v.rbegin(); it != v.rend(); ++it)

template<typename T> bool   setmin(T & a, T b) { if(b <  a) { a = b; return true; } else { return false; } }
template<typename T> bool   setmax(T & a, T b) { if(b >  a) { a = b; return true; } else { return false; } }
template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } }
template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } }
template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); }
template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; }

// ---- ----

LL mod(LL x, LL y) { return (x % y + y) % y; }

LL n, d[100000], x, y, z;
vector<LL> v[2];

bool ok(LL a, LL b) {
	LL ma = max(a, b);
	LL mi = min(a, b);
	return inII(z, ma - mi, ma + mi);
}

LL solve() {
	if(z == 0) { return 0; }
	inc(i, n) { if(z == d[i]) { return 1; } }
	
	inc(i, n) { v[mod(d[i], 2)].PB(d[i]); }
	inc(i, 2) { sort(RALL(v[i])); }
	
	LL s0 = v[0].size();
	LL s1 = v[1].size();
	
	if(z % 2 == 0) {
		if(s0 > 0 && z <= v[0][0] * 2) { return 2; }
		if(s1 > 0 && z <= v[1][0] * 2) { return 2; }
	} else {
		if(s0 == 0 || s1 == 0 || v[0][0] + v[1][0] < z) { return -1; }
		
		inc(i, 2) { sort(ALL(v[i])); }
		
		int p = -1;
		inc(j, s1) { if(v[1][j] <= z) { p = j; } }
		int j = 0;
		inc(i, s0) {
			if(v[0][i] <= z) {
				if(inID(p + 0, 0, s1) && ok(v[0][i], v[1][p + 0])) { return 2; }
				if(inID(p + 1, 0, s1) && ok(v[0][i], v[1][p + 1])) { return 2; }
			} else {
				while(j < s1 && v[0][i] > v[1][j] + z) { j++; }
				if(j >= s1) { break; }
				if(ok(v[0][i], v[1][j])) { return 2; }
			}
		}
	}
	
	return -1;
}

int main() {
	cin >> n;
	inc(i, n) { cin >> d[i]; }
	cin >> x >> y;
	
	z = abs(x) + abs(y);
	
	cout << solve() << endl;
	
	return 0;
}
0