結果

問題 No.1071 ベホマラー
ユーザー umezoumezo
提出日時 2020-06-05 22:29:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 4,873 ms
コンパイル使用メモリ 266,544 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 22:03:48
合計ジャッジ時間 9,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _GLIBCXX_DEBUG
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

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

int main(){
  int n,k,x,y;
  cin>>n>>k>>x>>y;
  
  int a;
  vector<int> A(n);
  int sum=0;
  rep(i,n){
    cin>>a;
    A[i]=(a-1+k-1)/k;
    sum+=(a-1+k-1)/k;
  }
  sort(ALL(A));
  
  int m;
  m=(y+x-1)/x;
  
  int sum1=0;
  if(n<m) cout<<sum<<endl;
  else{
    rep(i,n){
      if(A[i]>A[n-m]) sum1+=A[i]-A[n-m];
    }
    cout<<A[n-m]*y+sum1*x<<endl;
  }

  return 0;
}
0