結果

問題 No.1071 ベホマラー
ユーザー seven_threeseven_three
提出日時 2020-06-05 21:42:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 988 bytes
コンパイル時間 897 ms
コンパイル使用メモリ 100,428 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-09 20:32:02
合計ジャッジ時間 2,247 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 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 AC 1 ms
5,376 KB
testcase_10 AC 37 ms
5,376 KB
testcase_11 AC 34 ms
5,376 KB
testcase_12 AC 23 ms
5,376 KB
testcase_13 AC 31 ms
5,376 KB
testcase_14 AC 37 ms
5,376 KB
testcase_15 AC 43 ms
5,376 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 AC 42 ms
5,376 KB
testcase_18 AC 42 ms
5,376 KB
testcase_19 AC 43 ms
5,376 KB
testcase_20 AC 40 ms
5,376 KB
testcase_21 AC 40 ms
5,376 KB
testcase_22 AC 40 ms
5,376 KB
testcase_23 AC 40 ms
5,376 KB
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:48:30: warning: 'z' may be used uninitialized [-Wmaybe-uninitialized]
   48 |                 ans += vec[n - z - 1] * y;
      |                            ~~^~~
main.cpp:33:19: note: 'z' was declared here
   33 |         long long z;
      |                   ^

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
int main() {
#define int long long
	long long n, k, x, y;
	cin >> n >> k >> x >> y;
	vector<int> vec;
	for (int i = 0; i < n; i++) {
		long long a;
		cin >> a;
		a--;
		if (a != 0) {
			vec.emplace_back((a + k - 1) / k);
		}
	}
	long long z;
	if (vec.empty()) {
		cout << "0" << endl;
		return 0;
	}
	sort(vec.begin(), vec.end());
	for (int i = n; i >= 0; i--) {
		if (y > x * i) {
			z = i;
			break;
		}
	}
	long long ans = 0;
	long long o;
	if (n - z - 1 != -1) {
		ans += vec[n - z - 1] * y;
		o = vec[n - z - 1];
	}
	else {
		o = 0;
	}
	for (int i = n - z; i < n; i++) {
		ans += (vec[i] - o) * x;
	}
	cout << ans << endl;
	return 0;
}
0