結果

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

テストケース

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

ソースコード

diff #

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

int main(){
    int n;
    cin >> n;
    int move_mass[n];
    vector<int> even_odd[2];
    int number_max = 0;
    for(int i = 0; i < n; i++){
        cin >> move_mass[i];
        number_max = max(number_max, move_mass[i]);
        even_odd[move_mass[i] % 2].push_back(move_mass[i]);
    }
    int x, y;
    cin >> x >> y;
    int distance = abs(x) + abs(y);
    if(!distance){
        cout << 0 << endl;
    }
    sort(move_mass, move_mass + n);
    sort(even_odd[0].begin(), even_odd[0].end());
    sort(even_odd[1].begin(), even_odd[1].end());
    for(int i = 0; i < n; i++){
        if(move_mass[i] == distance){
            cout << 1 << endl;
            return 0;
        }
    }
    int min_difference = 0;
    int look_not_odd = 0;
    int look_odd = 0;
    while(look_not_odd != even_odd[0].size() && look_odd != even_odd[1].size()){
        min_difference = min(min_difference, abs(even_odd[0][look_not_odd] - even_odd[1][look_odd]));
        if(even_odd[0][look_not_odd] > even_odd[1][look_odd]){
            look_odd++;
        }else{
            look_not_odd++;
        }
    }
    if(distance % 2 == 0){
        if(number_max * 2 >= distance){
            cout << 2 << endl;
        }else{
            cout << -1 << endl;
        }
    }else if(even_odd[0].size() && even_odd[1].size()){
        if(min_difference <= distance && distance <= even_odd[0].back() + even_odd[1].back()){
            cout << 2 << endl;
        }else{
            cout << -1 << endl;
        }
    }else{
        cout << -1 << endl;
    }
}
0