結果
問題 | No.1071 ベホマラー |
ユーザー | shori |
提出日時 | 2020-06-05 22:14:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,046 bytes |
コンパイル時間 | 1,822 ms |
コンパイル使用メモリ | 171,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-09 21:41:31 |
合計ジャッジ時間 | 5,647 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 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 | 2 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 | -- | - |
ソースコード
#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 ? (minbrr/K+1) : minbrr/K; 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; }