結果
問題 | No.2770 Coupon Optimization |
ユーザー | sibasyun |
提出日時 | 2024-06-02 22:10:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,587 bytes |
コンパイル時間 | 4,856 ms |
コンパイル使用メモリ | 265,320 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 22:10:38 |
合計ジャッジ時間 | 11,902 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 35 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
#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); 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++){ int now = i; ll ans = 0; for (int j = 1; j <= 100; j++){ int d = B[j]; if (d == 0) continue; int left = max(0, now-d); ans += (now - left) * j * (A[now] - A[left]); now = left; if (now == 0) break; } cout << ans << endl; } return 0; }