結果
問題 | No.1071 ベホマラー |
ユーザー | Y17 |
提出日時 | 2020-06-05 21:38:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 710 bytes |
コンパイル時間 | 1,913 ms |
コンパイル使用メモリ | 172,880 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-09 20:22:09 |
合計ジャッジ時間 | 3,543 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 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 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 58 ms
8,448 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 85 ms
10,496 KB |
testcase_18 | AC | 85 ms
10,496 KB |
testcase_19 | AC | 85 ms
10,368 KB |
testcase_20 | AC | 45 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | AC | 46 ms
5,376 KB |
testcase_23 | AC | 47 ms
5,376 KB |
testcase_24 | AC | 73 ms
10,496 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } signed main(){ int n, k, x, y; cin >> n >> k >> x >> y; int a[100010]; for(int i = 0;i < n;i++){ cin >> a[i]; a[i]--; } int m = n; map<int, int> mp; int cnt = 0; for(int i = 0;i < n;i++){ int tmp = (a[i]+k-1)/k; mp[tmp]++; cnt += tmp; } int ans = cnt * x; int old = 0; int yy = 0; for(auto e : mp){ cnt -= m * (e.first-old); old = e.first; m -= e.second; chmin(ans, x*cnt + y*e.first); } cout << ans << endl; return 0; }