結果

問題 No.1071 ベホマラー
ユーザー shorishori
提出日時 2020-06-05 22:09:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,024 bytes
コンパイル時間 1,731 ms
コンパイル使用メモリ 171,936 KB
実行使用メモリ 11,644 KB
最終ジャッジ日時 2024-05-09 21:30:16
合計ジャッジ時間 5,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,644 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 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,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define vi vector<int>
#define vvi vector<vector<int>>
#define all(a) (a).begin(), (a).end()
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, s, n) for (int i = (s); i < (int)(n); i++)
const int MOD = 1e9+7;
const ll LINF = 1e18;
const int INF = 1e9;
ll A, B, C, D, E, F, G, H, N, M, L, K, P, Q, R, W, X, Y, Z;
string S, T;

int main()
{

    cin >> N >> K >> X >> Y;
    vi arr(N);
    vi brr;
    for (int i = 0; i < N; i++) {cin >> A;arr.at(i) =A-1;}

    rep(i,N)
    {
        if(arr[i] > 0)
        {
            brr.push_back(arr[i]);
        }
    }
    
    while(!brr.empty())
    {
        B = brr.size();
        vi crr;

        ll minbrr = *min_element(all(brr));
        ll rej = (minbrr/K+1);

        C += min(B*X,Y) * rej;
        rep(i,B)
        {
            brr[i] -= K *rej;
            if(brr[i] > 0) crr.push_back(brr[i]);
        }
        brr = crr;
        crr.clear();
    }

    cout << C;


    return 0;
}
0