# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
485309 | fcmalkcin | Distributing Candies (IOI21_candies) | C++17 | 1084 ms | 35544 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;
#define ll long long
#define pll pair<ll,ll>
#define ff first
#define ss second
#define pb push_back
#define endl "\n"
const ll maxn = 2e5 + 10;
const ll mod = 998244353 ;
const ll base = 3e18;
struct tk {
ll pmn = 0, pmx = 0, sum = 0;
ll chk = 0;
};
tk mer(tk a, tk b) {
if (a.chk == 0)
return b;
if (b.chk == 0)
return a;
tk c;
c.sum = a.sum + b.sum;
c.pmn = min(a.pmn, a.sum + b.pmn);
c.pmx = max(a.pmx, a.sum + b.pmx);
c.chk = a.chk;
return c;
}
# | 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... |