結果

問題 No.602 隠されていたゲーム2
ユーザー ミドリムシミドリムシ
提出日時 2017-12-02 05:25:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 846 bytes
コンパイル時間 839 ms
コンパイル使用メモリ 69,376 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 20:53:44
合計ジャッジ時間 1,830 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 43 ms
5,376 KB
testcase_21 AC 35 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 43 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int n;
    cin >> n;
    int move_mass[n];
    for(int i = 0; i < n; i++){
        cin >> move_mass[i];
    }
    int x, y;
    cin >> x >> y;
    for(int i = 0; i < n; i++){
        if(move_mass[i] == abs(x) + abs(y)){
            cout << 1 << endl;
            return 0;
        }
    }
    for(int i = 0; i < n; i++){
        if(upper_bound(move_mass, move_mass + n, abs(x) + abs(y) + move_mass[i]) -
           lower_bound(move_mass, move_mass + n, abs(x) + abs(y) + move_mass[i]) ||
           upper_bound(move_mass, move_mass + n, abs(x) + abs(y) - move_mass[i]) -
           lower_bound(move_mass, move_mass + n, abs(x) + abs(y) - move_mass[i])){
            cout << 2 << endl;
            return 0;
        }
    }
    cout << -1 << endl;
}
0