結果

問題 No.1071 ベホマラー
ユーザー Tsukasan_z46Tsukasan_z46
提出日時 2020-06-06 02:43:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,056 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 207,140 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-01 04:58:53
合計ジャッジ時間 4,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,948 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 17 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 22 ms
6,940 KB
testcase_18 AC 22 ms
6,940 KB
testcase_19 AC 22 ms
6,940 KB
testcase_20 AC 17 ms
6,940 KB
testcase_21 WA -
testcase_22 AC 17 ms
6,940 KB
testcase_23 AC 16 ms
6,940 KB
testcase_24 AC 22 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; i < (int)(n); i++)
#define REPLL(i, n) for (ll i = 0; i < (ll)(n); i++)
using namespace std;
template<class T>inline bool chmax(T &a, const T &b){if(a < b){a = b; return 1;}return 0;}
template<class T>inline bool chmin(T &a, const T &b){if(a > b){a = b; return 1;}return 0;}
typedef long long ll;

// yukicoder No.1071 ベホマラー
// 2020.06.06
// Kの商の繰り上げ、昇順に並び替え、右側から累積和、O(N)

int main(){
  ios::sync_with_stdio(false);
  cin.tie(0);
  ll N, K, X, Y; cin >> N >> K >> X >> Y;
  vector<ll> A(N);
  REPLL(i, N){
    cin >> A[i]; A[i]--;
    A[i] = (A[i]+(K-1))/K;
  }
  sort(A.begin(), A.end());
  vector<ll> AA(N);
  for(ll i = N-1; i >= 0; i--){
    if(i == N-1){
      AA[i] = A[i];
    }else{
      AA[i] = AA[i+1]+A[i];
    }
  }

  ll ans = 1e18;
  ans = min(ans, A[N-1]*Y);
  REPLL(i, N){
    if(i == 0){
      ans = min(ans, AA[i]*X);
    }else{
      ans = min(ans, A[i-1]*Y + (AA[i]-A[i-1]*(N-i))*X);
    }
  }
  cout << ans << endl;
}
0