結果

問題 No.2922 Rose Garden
ユーザー elpheelphe
提出日時 2024-10-22 16:51:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 658 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 80,856 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-22 16:51:32
合計ジャッジ時間 5,596 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
6,820 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 7 ms
6,820 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 25 ms
6,816 KB
testcase_14 WA -
testcase_15 AC 18 ms
6,816 KB
testcase_16 AC 27 ms
6,824 KB
testcase_17 AC 33 ms
6,816 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 16 ms
6,816 KB
testcase_20 AC 24 ms
6,816 KB
testcase_21 AC 31 ms
6,816 KB
testcase_22 AC 14 ms
6,816 KB
testcase_23 AC 31 ms
6,816 KB
testcase_24 AC 6 ms
6,820 KB
testcase_25 AC 15 ms
6,820 KB
testcase_26 AC 24 ms
6,816 KB
testcase_27 AC 26 ms
6,820 KB
testcase_28 AC 25 ms
6,820 KB
testcase_29 AC 21 ms
6,820 KB
testcase_30 AC 4 ms
6,820 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 3 ms
6,816 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 4 ms
6,816 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 5 ms
6,820 KB
testcase_37 AC 5 ms
6,816 KB
testcase_38 AC 3 ms
6,820 KB
testcase_39 AC 4 ms
6,816 KB
testcase_40 AC 23 ms
6,820 KB
testcase_41 AC 11 ms
6,820 KB
testcase_42 AC 36 ms
6,816 KB
testcase_43 AC 16 ms
6,816 KB
testcase_44 AC 32 ms
6,820 KB
testcase_45 AC 6 ms
6,816 KB
testcase_46 AC 35 ms
6,816 KB
testcase_47 AC 20 ms
6,816 KB
testcase_48 AC 6 ms
6,820 KB
testcase_49 AC 31 ms
6,820 KB
testcase_50 AC 2 ms
6,816 KB
testcase_51 AC 2 ms
6,820 KB
testcase_52 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	uint32_t N, S, B, i;
	cin >> N >> S >> B;
	vector<uint32_t> H(N);
	for (i = 0; i != N; ++i)
		cin >> H[i];

	if (N == 1)
	{
		cout << "Yes\n";
		return 0;
	}

	sort(H.begin() + 1, H.end() - 1);

	i = lower_bound(H.begin() + 1, H.end() - 1, H[0]) - H.begin();
	if (H[0] + S * static_cast<uint64_t>(B) < H[i])
	{
		cout << "No\n";
		return 0;
	}

	for (++i; i < N; ++i)
		if (H[i - 1] + S * static_cast<uint64_t>(B) < H[i])
		{
			cout << "No\n";
			return 0;
		}

	cout << "Yes\n";
	return 0;
}
0