結果
| 問題 | No.1071 ベホマラー | 
| コンテスト | |
| ユーザー |  merom686 | 
| 提出日時 | 2020-06-05 21:31:35 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 21 ms / 2,000 ms | 
| コード長 | 634 bytes | 
| コンパイル時間 | 948 ms | 
| コンパイル使用メモリ | 95,820 KB | 
| 最終ジャッジ日時 | 2025-01-10 22:10:58 | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 5 | 
| other | AC * 20 | 
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, k, x, y;
    cin >> n >> k >> x >> y;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        int t;
        cin >> t;
        a[i] = (t - 1 + (k - 1)) / k;
    }
    sort(a.begin(), a.end());
    ll r = 0;
    int p = 0;
    for (int i = 0; i < n; i++) {
        r += (a[i] - p) * min((n - i) * (ll)x, (ll)y);
        p = a[i];
    }
    cout << r << endl;
    return 0;
}
            
            
            
        