結果

問題 No.1071 ベホマラー
ユーザー forest3forest3
提出日時 2020-06-22 15:03:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 1,480 ms
コンパイル使用メモリ 177,396 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 18:41:30
合計ジャッジ時間 3,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 40 ms
6,940 KB
testcase_11 AC 38 ms
6,940 KB
testcase_12 AC 25 ms
6,940 KB
testcase_13 AC 34 ms
6,940 KB
testcase_14 AC 41 ms
6,940 KB
testcase_15 AC 47 ms
6,944 KB
testcase_16 AC 48 ms
6,940 KB
testcase_17 AC 46 ms
6,940 KB
testcase_18 AC 49 ms
6,940 KB
testcase_19 AC 46 ms
6,944 KB
testcase_20 AC 42 ms
6,944 KB
testcase_21 AC 44 ms
6,944 KB
testcase_22 AC 41 ms
6,940 KB
testcase_23 AC 42 ms
6,944 KB
testcase_24 AC 48 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	int N;
	long long K, X, Y;
	cin >> N >> K >> X >> Y;
	vector<long long> a( N );
	for( int i = 0; i < N; i++ ) {
		long long A;
		cin >> A;
		a[i] = (A - 1 + K - 1) / K;
	}

	sort( a.begin(), a.end() );
	vector<pair<long long, int>> p;
	int n = 0;
	for( int i = 0; i < N; i++ ) {
		if( i + 1 < N && a[i] == a[i + 1] ) {
			n++;
		}
		else {
			p.push_back( make_pair( a[i], n + 1 ) );
			n = 0;
		}
	}
	n = N;
	for( int i = 0; i < p.size(); i++ ) {
		long long s = p[i].second;
		p[i].second = n;
		n -= s;
	}
	long long ans = 0;
	long long last = 0;
	for( int i = 0; i < p.size(); i++ ) {
		int n = p[i].second;
		long long h = p[i].first - last;
		if( n * X < Y ) ans += n * X * h;
		else ans += Y * h;
		last = p[i].first;
	}

	cout << ans << endl;
}
0