結果

問題 No.1071 ベホマラー
ユーザー totori_nyaatotori_nyaa
提出日時 2020-06-05 21:54:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 932 bytes
コンパイル時間 1,555 ms
コンパイル使用メモリ 170,240 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 20:56:47
合計ジャッジ時間 2,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h> 
using namespace std;
typedef long long ll;
template<typename T1,typename T2> bool chmin(T1 &a,T2 b){if(a<=b)return 0; a=b; return 1;}
template<typename T1,typename T2> bool chmax(T1 &a,T2 b){if(a>=b)return 0; a=b; return 1;}
int dx[4]={0,1,0,-1}, dy[4]={1,0,-1,0};
long double eps = 1e-9;
long double pi = acos(-1);



signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(20);

    
    
    ll n,k,x,y;
    cin>>n>>k>>x>>y;
    ll a[n];
    ll ans = 0;
    for(int i=0;i<n;i++){
        cin>>a[i];
        a[i]--;
        ans += (a[i] + k-1) / k * x;
    }
    sort(a,a+n);
    ll sum[n+1]={};
    for(int i=n-1;i>=0;i--){
        sum[i] = sum[i+1] + (a[i]+k-1)/k*x; 
    }
    for(int i=0;i<n;i++){
        ll cnt = a[i]/k + (a[i]%k!=0);
        ll ret = sum[i+1] + cnt*y;
        ret -= x*cnt*(n-i-1);
        chmin(ans,ret);
    }
    cout << ans << endl;

}
0