結果

問題 No.602 隠されていたゲーム2
ユーザー finefine
提出日時 2017-12-02 19:05:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,284 bytes
コンパイル時間 1,649 ms
コンパイル使用メモリ 174,032 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-05-06 01:47:49
合計ジャッジ時間 2,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 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 35 ms
9,216 KB
testcase_18 AC 94 ms
15,744 KB
testcase_19 AC 137 ms
22,144 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 49 ms
8,064 KB
testcase_23 AC 98 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    set<ll> s;
    for (int i = 0; i < n; i++) {
        ll d;
        cin >> d;
        s.insert(d);
    }
    ll x, y;
    cin >> x >> y;
    ll dist = abs(x) + abs(y);
    int ans = -1;
    if (dist == 0) {
        ans = 0;
    } else if (s.find(dist) != s.end()) {
        ans = 1;
    } else {
        for (ll v : s) {
            if (s.find(dist - v) != s.end()) ans = 2;
            if (s.find(v + dist) != s.end()) ans = 2;
        }

        set<ll> s2, s3;
        for (ll v : s) {
            if (v >= abs(x)) s2.insert(v - abs(x));
            if (v >= abs(y)) s3.insert(v - abs(y));
        }
        for (ll v : s2) {
            if (s3.find(v) != s3.end()) ans = 2;
        }

        if (dist % 2 == 0) {
            if (*s.rbegin() * 2 >= dist) ans = 2;
        } else {
            set<ll> so, se;
            for (ll v : s) {
                if (v % 2 == 0) se.insert(v);
                else so.insert(v);
            }
            if (se.size() > 0 && so.size() > 0) {
                if (*se.rbegin() + *so.rbegin() >= dist) ans = 2;
            }
        }
    }
    cout << ans << endl;
    return 0;
}
0