結果
| 問題 |
No.602 隠されていたゲーム2
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-12-02 01:05:03 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,355 bytes |
| コンパイル時間 | 2,138 ms |
| コンパイル使用メモリ | 195,208 KB |
| 最終ジャッジ日時 | 2025-01-05 04:39:41 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 WA * 6 |
ソースコード
#include <bits/stdc++.h>
#define VARNAME(x) #x
#define show(x) cerr << #x << " = " << x << endl
using namespace std;
using ll = long long;
template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v)
{
os << "sz:" << v.size() << "\n[";
for (const auto& p : v) {
os << p << ",";
}
os << "]\n";
return os;
}
template <typename S, typename T>
ostream& operator<<(ostream& os, const pair<S, T>& p)
{
os << "(" << p.first << "," << p.second
<< ")";
return os;
}
constexpr ll MOD = (ll)1e9 + 7LL;
template <typename T>
constexpr T INF = numeric_limits<T>::max() / 64;
using P = pair<ll, ll>;
P convert(const P& pos)
{
const ll x = pos.first - pos.second;
const ll y = pos.first + pos.second;
return make_pair(x, y);
}
int main()
{
int N;
cin >> N;
vector<ll> d(N);
for (int i = 0; i < N; i++) {
cin >> d[i];
}
ll x, y;
cin >> x >> y;
const ll dist = abs(x) + abs(y);
const ll maxi = *max_element(d.begin(), d.end());
if (dist == 0) {
cout << 0 << endl;
return 0;
}
for (int i = 0; i < N; i++) {
if (d[i] == dist) {
cout << 1 << endl;
return 0;
}
}
if (dist <= maxi * 2) {
cout << 2 << endl;
} else {
cout << -1 << endl;
}
return 0;
}