結果

問題 No.602 隠されていたゲーム2
ユーザー tsutajtsutaj
提出日時 2017-12-02 09:42:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,554 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 57,584 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 01:39:43
合計ジャッジ時間 1,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 27 ms
5,376 KB
testcase_19 AC 31 ms
5,376 KB
testcase_20 AC 31 ms
5,376 KB
testcase_21 AC 19 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 18 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <vector>

int N;
int d[100010];
int main() {
    scanf("%d", &N);
    std::vector<int> even, odd;
    for(int i=0; i<N; i++) {
        int p; scanf("%d", &p);
        (p%2 ? odd : even).push_back(p);
        d[i] = p;
    }

    int x, y; scanf("%d%d", &x, &y);

    // ans = 0
    if(x == 0 && y == 0) printf("0\n");
    else {
        // ans = 1
        int mh = abs(x) + abs(y);
        for(int i=0; i<N; i++) {
            if(mh == d[i]) {
                printf("1\n");
                return 0;
            }
        }

        // ans = 2
        std::sort(odd.begin(), odd.end());
        std::sort(even.begin(), even.end());
        std::sort(d, d+N);
        int ma = std::max(abs(x+y), abs(x-y));
        for(int i=0; i<N; i++) {
            int flr = abs(ma - d[i]);

            if(flr % 2) {
                // odd
                size_t idx = std::lower_bound(odd.begin(), odd.end(), flr) - odd.begin();
                if(idx != odd.size() && odd[idx] >= flr && odd[idx] < d[i]) {
                    printf("2\n");
                    return 0;
                } 
            }
            else {
                // even
                size_t idx = std::lower_bound(even.begin(), even.end(), flr) - even.begin();
                if(idx != even.size() && even[idx] >= flr && even[idx] < d[i]) {
                    printf("2\n");
                    return 0;
                }
            }
        }

        // no solution
        printf("-1\n");
    }
    return 0;
}
0