結果

問題 No.1071 ベホマラー
ユーザー shorishori
提出日時 2020-06-05 22:02:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 937 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 171,288 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-09 21:13:34
合計ジャッジ時間 5,502 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 61 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 2 ms
5,376 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;

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

    cout << C;


    return 0;
}
0