結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 13 ms
5,376 KB
testcase_17 AC 29 ms
7,680 KB
testcase_18 AC 74 ms
11,904 KB
testcase_19 AC 119 ms
17,408 KB
testcase_20 AC 116 ms
17,408 KB
testcase_21 AC 86 ms
12,800 KB
testcase_22 WA -
testcase_23 AC 75 ms
12,800 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;
        }
    }
    cout << ans << endl;
    return 0;
}
0