# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
481166 | rumen_m | Distributing Candies (IOI21_candies) | C++17 | 419 ms | 74632 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>
#include <vector>
using namespace std;
const int MAXN = 2e6+2;
vector <int> ans;
long long MIN(long long a, long long b)
{
if(a<b)return a;
return b;
}
long long MAX(long long a, long long b)
{
if(a>b)return a;
return b;
}
struct Segment
{
long long sum[MAXN],mn[MAXN],mx[MAXN];
void update(int v, int from, int to, int t, int delta)
{
if(from==to)
{
sum[v]+=delta;
mn[v] = sum[v];
mx[v] = sum[v];
return ;
}
int mid = (from+to)/2;
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... |