結果

問題 No.467 隠されていたゲーム
コンテスト
ユーザー masa
提出日時 2017-04-21 21:52:30
言語 C++14
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 419µs
コード長 668 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 371 ms
コンパイル使用メモリ 87,040 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2026-09-10 05:54:25
合計ジャッジ時間 1,748 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>
#include <numeric>

using namespace std;

int main() {
	int n, x, y;
	cin >> n;

	vector<int> d(n, 0);
	for (int i = 0; i < n; i++) {
		cin >> d[i];
	}
	int d_max = *max_element(d.begin(), d.end());

	cin >> x >> y;
	int goal = max(abs(x), abs(y));

	int ans;

	if (goal == 0) {
		ans = 0;
	} else if (find(d.begin(), d.end(), goal) != d.end()) {
		ans = 1;
	} else if (goal <= 2 * d_max) {
		ans = 2;
	} else {
		ans = goal / (2 * d_max) * 2;
		goal %= 2 * d_max;
		if (goal > 0) {
			ans++;
		}
		if (goal > d_max) {
			ans++;
		}
	}

	cout << ans << endl;
	return 0;
}
0