# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
632168 | Ooops_sorry | Snowball (JOI21_ho_t2) | C++17 | 1069 ms | 15300 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
mt19937 rnd(51);
#define ll long long
#define pb push_back
#define ld long double
const ll INF = 1e18;
signed main() {
#ifdef LOCAL
freopen("input.txt", "r", stdin);
#endif // LOCAL
ios_base::sync_with_stdio(0);
cin.tie(0);
int n, q;
cin >> n >> q;
vector<ll> x(n), w(q), ans(n);
for (int i = 0; i < n; i++) {
cin >> x[i];
}
ll cur = 0, mn = 0, mx = 0;
vector<ll> u{-INF, INF};
for (int i = 0; i < q; i++) {
cin >> w[i];
cur += w[i];
mn = min(mn, cur);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |