結果

問題 No.2770 Coupon Optimization
ユーザー sibasyunsibasyun
提出日時 2024-06-02 22:19:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 416 ms / 3,000 ms
コード長 1,640 bytes
コンパイル時間 4,992 ms
コンパイル使用メモリ 265,460 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-02 22:19:58
合計ジャッジ時間 11,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 363 ms
5,248 KB
testcase_04 AC 396 ms
5,376 KB
testcase_05 AC 35 ms
5,376 KB
testcase_06 AC 369 ms
5,376 KB
testcase_07 AC 357 ms
5,376 KB
testcase_08 AC 416 ms
5,376 KB
testcase_09 AC 87 ms
5,376 KB
testcase_10 AC 182 ms
5,376 KB
testcase_11 AC 141 ms
5,376 KB
testcase_12 AC 221 ms
5,376 KB
testcase_13 AC 179 ms
5,376 KB
testcase_14 AC 396 ms
5,376 KB
testcase_15 AC 409 ms
5,376 KB
testcase_16 AC 406 ms
5,376 KB
testcase_17 AC 405 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#include <iostream>
#include <iomanip>
#include <math.h>
#include <random>
#include <chrono>
#include <cstdint>


using namespace std;
using namespace atcoder;
// using mint = modint998244353;
using mint = modint1000000007;
using vi = vector<int>;
using vvi = vector<vector<int>>;
using ll = long long;
template <class T> using max_heap = priority_queue<T>;
template <class T> using min_heap = priority_queue<T, vector<T>, greater<>>;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, f, n) for (int i = (int) f; i < (int)(n); i++)
#define repd(i, n, l) for (int i = (int) n; i >= (int) l; i--)
#define all(p) p.begin(),p.end()
vector<pair<int, int>> dydx{{-1, 0}, {1, 0}, {0, -1 }, {0, 1}};
const ll inf = 1LL << 60;

ll op(ll a,ll b) {return a+b;}
ll e() {return 0LL;}

int main() {
    int n, m;
    cin >> n >> m;
    vector<ll> A(n+1);
    vector<int> B(101, 0);
    rep(i, n){
        ll a; cin >> a;
        a /= 100;
        A[i+1] = a;
    }
    A[0] = 0;
    sort(all(A));
    rep(i, n) A[i+1] += A[i];
    rep(i, m){
        int b; cin >> b;
        B[100-b]++;
    }
    B[100] = 1000000;
    // segtree<ll, op, e> seg(A);
    for (int i = 1; i <= n; i++){
        ll now = i;
        ll ans = 0;
        for (int j = 1; j <= 100; j++){
            ll d = B[j];
            if (d == 0) continue;
            ll left = max(0LL, now-d);
            ans += j * (A[now] - A[left]);
            // cout << ans << ' ' << now << ' ' << left << endl;
            now = left;
            if (now == 0) break;
        }
        cout << ans << endl;
    }
    return 0;
}
0