# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
618041 | CaroLinda | 사탕 분배 (IOI21_candies) | C++17 | 340 ms | 36932 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "candies.h"
#include <bits/stdc++.h>
#define ll long long
const int MAXN = 2e5+10;
using namespace std;
ll smx[MAXN*4], smn[MAXN*4], soma[MAXN*4];
int m(int l, int r){
return (l+r)>>1;
}
void update(int pos, int l, int r, int id, ll newVal){
if(l == r){
smx[pos] = smn[pos] = soma[pos] = newVal;
smx[pos] = max(smx[pos], 0LL);
smn[pos] = min(smn[pos], 0LL);
return;
}
if(id <= m(l,r))
update(pos<<1 , l , m(l,r), id, newVal);
else update(pos<<1|1, m(l,r)+1, r, id, newVal);
smx[pos] = max(smx[pos<<1], soma[pos<<1]+smx[pos<<1|1]);
smn[pos] = min(smn[pos<<1], soma[pos<<1]+smn[pos<<1|1]);
soma[pos] = soma[pos<<1]+soma[pos<<1|1];
# | 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... |