結果

問題 No.1071 ベホマラー
ユーザー shorishori
提出日時 2020-06-05 22:02:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 937 bytes
コンパイル時間 1,653 ms
コンパイル使用メモリ 171,328 KB
実行使用メモリ 18,860 KB
最終ジャッジ日時 2024-12-17 15:04:20
合計ジャッジ時間 47,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,584 KB
testcase_01 AC 2 ms
11,560 KB
testcase_02 AC 1 ms
13,640 KB
testcase_03 AC 1 ms
11,552 KB
testcase_04 AC 56 ms
13,636 KB
testcase_05 AC 2 ms
10,980 KB
testcase_06 AC 2 ms
11,688 KB
testcase_07 AC 2 ms
11,572 KB
testcase_08 AC 1 ms
13,636 KB
testcase_09 AC 1 ms
11,612 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

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