結果
| 問題 | 
                            No.2770 Coupon Optimization
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2024-05-31 23:57:18 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 112 ms / 3,000 ms | 
| コード長 | 813 bytes | 
| コンパイル時間 | 2,153 ms | 
| コンパイル使用メモリ | 199,492 KB | 
| 最終ジャッジ日時 | 2025-02-21 18:42:22 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 16 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
void solve() {
  ll n, m;
  cin >> n >> m;
  vector<ll> a(n);
  rep(i, n) cin >> a[i];
  sort(a.begin(), a.end());
  vector<ll> cnt(100, 0), idx(100, 0);
  cnt[0] = n;
  rep(i, m) {
    ll b;
    cin >> b;
    cnt[b]++;
  }
  ll ans = 0;
  rep(i, n) {
    ans += a[i] / 100;
    idx[99]++;
    for (ll j = 99; j >= 1; j--) {
      if (idx[j] - idx[j - 1] <= cnt[j])
        break;
      ans -= a[idx[j - 1]] / 100 * (100 - j);
      ans += a[idx[j - 1]] / 100 * (100 - (j - 1));
      idx[j - 1]++;
    }
    cout << ans << '\n';
  }
}
int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}