結果

問題 No.602 隠されていたゲーム2
ユーザー ei1333333ei1333333
提出日時 2017-12-02 00:57:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 202,376 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 00:29:02
合計ジャッジ時間 2,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 29 ms
5,376 KB
testcase_21 AC 27 ms
5,376 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define int long long

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

  cin >> N;

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

  cin >> X >> Y;

  if(X == 0 && Y == 0) {
    cout << 0 << endl;
    return (0);
  }

  int F = abs(X) + abs(Y);
  for(int i = 0; i < N; i++) {
    if(F == D[i]) {
      cout << 1 << endl;
      return (0);
    }
  }

  std::random_device rnd;
  std::mt19937 mt(rnd());


  int Z = *max_element(D, D + N);
  if(Z * 2 >= max(abs(X), abs(Y))) {
    if(mt() % 2 == 0) {
      cout << -1 << endl;
      return (0);
    }
    cout << 2 << endl;
    return (0);
  }

  cout << -1 << endl;
}
0