結果

問題 No.602 隠されていたゲーム2
ユーザー ei1333333ei1333333
提出日時 2017-12-03 23:55:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 204,424 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 11:36:45
合計ジャッジ時間 3,175 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 2 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 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 8 ms
5,376 KB
testcase_17 AC 16 ms
5,376 KB
testcase_18 AC 41 ms
5,376 KB
testcase_19 AC 50 ms
5,376 KB
testcase_20 AC 41 ms
5,376 KB
testcase_21 AC 31 ms
5,376 KB
testcase_22 AC 51 ms
5,376 KB
testcase_23 AC 45 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

int main()
{
  int N, D[100000], X, Y;

  cin >> N;
  for(int i = 0; i < N; i++) {
    cin >> D[i];
  }
  cin >> X >> Y;

  X = abs(X) + abs(Y);

  if(X == 0) {
    cout << 0 << endl;
  } else {
    int odd = 0, even = 0;
    int ret = -1;
    sort(D, D + N);
    for(int i = 0; i < N; i++) {
      if(D[i] == X) {
        ret = 1;
        break;
      }
      if(D[i] % 2 == 0) even = D[i];
      else odd = D[i];
      int rest = abs(X - D[i]);
      if(rest % 2 == 0) {
        if(rest <= even) ret = 2;
      } else {
        if(rest <= odd) ret = 2;
      }
    }
    cout << ret << endl;
  }

  return (0);
}
0