# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
966187 | AkibAzmain | Distributing Candies (IOI21_candies) | C++17 | 150 ms | 32572 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 "candies.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
std::vector<int> distribute_candies (std::vector<int> c, std::vector<int> l,
std::vector<int> r, std::vector<int> v)
{
ll n = c.size();
v.push_back (0);
vector < ll > a;
for (auto &x : v) a.push_back (x);
reverse (a.begin (), a.end ());
a.push_back (-1e18);
for (auto &x : a) x *= -1;
for (int i = 1; i < a.size (); ++i) a[i] += a[i - 1];
pair < ll, ll > mn = { 0, 0 }, mx = { 0, 0 };
vector < pair < ll, ll > > mna (a.size ()), mxa = mna;
map < ll, int > mp;
for (int i = 0; i < a.size (); ++i)
{
if (a[i] < mn.first) mn = { a[i], i };
if (a[i] > mx.first) mx = { a[i], i };
mna[i] = mn;
mxa[i] = mx;
if (mp.count (mx.first - mn.first) == 0)
mp[mx.first - mn.first] = i;
}
vector < int > ans (n);
for (int i = 0; i < n; ++i)
{
int j = mp.lower_bound (c[i])->second;
if (a[j] == mna[j].first)
ans[i] = c[i] - a[mxa[j].second];
else
ans[i] = -a[mna[j].second];
if (ans[i] < 0) ans[i] += c[i];
}
return ans;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |