結果

問題 No.602 隠されていたゲーム2
ユーザー PachicobuePachicobue
提出日時 2017-12-02 00:49:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,108 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 210,008 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 00:27:13
合計ジャッジ時間 3,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
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 WA -
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 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 34 ms
5,376 KB
testcase_19 AC 42 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 45 ms
5,376 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
    if (x == 0 and y == 0) {
        cout << 0 << endl;
    }
    for (int i = 0; i < N; i++) {
        if (abs(x) + abs(y) == d[i]) {
            cout << 1 << endl;
            return 0;
        }
    }
    sort(d.begin(), d.end());
    tie(x, y) = convert(make_pair(x, y));
    for (int i = 0; i < N; i++) {
        const ll xinf = x - d[i];
        const ll yinf = y - d[i];
        const ll xsup = x + d[i];
        const ll ysup = y + d[i];
        for (int j = 0; j < 4; j++) {
            const ll mini = (j == 0) ? min({abs(yinf), abs(xinf), abs(xsup)}) : (j == 1) ? min({abs(xinf), abs(yinf), abs(ysup)}) : (j == 2) ? min({abs(ysup), abs(xinf), abs(xsup)}) : min({abs(xsup), abs(yinf), abs(ysup)});
            const ll maxi = (j == 0) ? max({abs(yinf), abs(xinf), abs(xsup)}) : (j == 1) ? max({abs(xinf), abs(yinf), abs(ysup)}) : (j == 2) ? max({abs(ysup), abs(xinf), abs(xsup)}) : max({abs(xsup), abs(yinf), abs(ysup)});
            if (upper_bound(d.begin(), d.end(), maxi) - lower_bound(d.begin(), d.end(), mini) > 0) {
                cout << 2 << endl;
                return 0;
            }
        }
    }
    cout << -1 << endl;


    return 0;
}
0