結果

問題 No.602 隠されていたゲーム2
ユーザー ミドリムシミドリムシ
提出日時 2017-12-02 05:57:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 822 bytes
コンパイル時間 627 ms
コンパイル使用メモリ 72,576 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 20:56:20
合計ジャッジ時間 1,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

int main(){
    int n;
    cin >> n;
    int move_mass[n];
    int parity_max[2] = {0, 0};
    for(int i = 0; i < n; i++){
        cin >> move_mass[i];
        parity_max[move_mass[i] % 2] = max(parity_max[move_mass[i] % 2], move_mass[i]);
    }
    int x, y;
    cin >> x >> y;
    if(!x && !y){
        cout << 0 << endl;
    }
    sort(move_mass, move_mass + n);
    for(int i = 0; i < n; i++){
        if(move_mass[i] == abs(x) + abs(y)){
            cout << 1 << endl;
            return 0;
        }
    }
    if(((abs(x) + abs(y)) % 2 == 0 && max(parity_max[0], parity_max[1]) * 2 >= abs(x) + abs(y)) || parity_max[0] + parity_max[1] >= (abs(x) + abs(y))){
        cout << 2 << endl;
        return 0;
    }
    cout << -1 << endl;
}
0