結果

問題 No.467 隠されていたゲーム
ユーザー masa
提出日時 2017-04-21 21:52:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 811 ms
コンパイル使用メモリ 72,940 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-04 16:30:39
合計ジャッジ時間 1,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#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