#include "happiness.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const ll INF = 1e18;
const int MAXVAL = 2e7;
ll M;
map<ll, int> MM;
struct Node
{
ll val, lazy;
int lc, rc;
Node() : val(0), lazy(0), lc(-1), rc(-1) {}
};
Node nodes[MAXVAL];
int ncnt=0;
int newNode()
{
if(ncnt==MAXVAL) assert(0);
return ncnt++;
}
void busy(int node, ll tl, ll tr)
{
if(nodes[node].lazy==0) return;
nodes[node].val+=nodes[node].lazy;
if(tl!=tr)
{
if(nodes[node].lc==-1) nodes[node].lc=newNode();
nodes[nodes[node].lc].lazy+=nodes[node].lazy;
if(nodes[node].rc==-1) nodes[node].rc=newNode();
nodes[nodes[node].rc].lazy+=nodes[node].lazy;
}
nodes[node].lazy=0;
}
void update(int node, ll tl, ll tr, ll l, ll r, ll k)
{
busy(node, tl, tr);
if(r<tl || tr<l) return;
if(l<=tl && tr<=r)
{
nodes[node].lazy+=k;
return;
}
ll mid=tl+tr>>1;
if(nodes[node].lc==-1) nodes[node].lc=newNode();
if(nodes[node].rc==-1) nodes[node].rc=newNode();
update(nodes[node].lc, tl, mid, l, r, k);
update(nodes[node].rc, mid+1, tr, l, r, k);
nodes[node].val=INF;
nodes[node].val=min(nodes[node].val, nodes[nodes[node].lc].val+nodes[nodes[node].lc].lazy);
nodes[node].val=min(nodes[node].val, nodes[nodes[node].rc].val+nodes[nodes[node].rc].lazy);
}
int root;
ll query()
{
return nodes[root].val+nodes[root].lazy;
}
void push(ll x)
{
update(root, 1, M, x+1, M, x);
MM[x]++;
if(MM[x]==1)
{
auto it=MM.find(x);
ll val=-x;
if(next(it)!=MM.end()) val+=next(it)->first;
update(root, 1, M, prev(it)->first+1, x, val);
}
}
void pop(ll x)
{
update(root, 1, M, x+1, M, -x);
MM[x]--;
if(MM[x]==0)
{
auto it=MM.find(x);
ll val=x;
if(next(it)!=MM.end()) val-=next(it)->first;
update(root, 1, M, prev(it)->first+1, x, val);
MM.erase(x);
}
}
bool init(int coinsCount, ll maxCoinSize, ll coins[])
{
M=maxCoinSize;
root=newNode();
MM[0];
for(int i=0; i<coinsCount; i++) push(coins[i]);
return query()>=-1;
}
bool is_happy(int event, int coinsCount, ll coins[])
{
if(event == -1) for(int i=0; i<coinsCount; i++) pop(coins[i]);
else for(int i=0; i<coinsCount; i++) push(coins[i]);
return query()>=-1;
}
Compilation message
happiness.cpp: In function 'void update(int, ll, ll, ll, ll, ll)':
happiness.cpp:54:11: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
54 | ll mid=tl+tr>>1;
| ~~^~~
grader.cpp: In function 'int main()':
grader.cpp:16:12: warning: unused variable 'max_code' [-Wunused-variable]
16 | long long max_code;
| ^~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
275 ms |
470136 KB |
Output is correct |
2 |
Correct |
278 ms |
470008 KB |
Output is correct |
3 |
Correct |
279 ms |
470008 KB |
Output is correct |
4 |
Correct |
279 ms |
470008 KB |
Output is correct |
5 |
Correct |
276 ms |
470012 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
275 ms |
470136 KB |
Output is correct |
2 |
Correct |
278 ms |
470008 KB |
Output is correct |
3 |
Correct |
279 ms |
470008 KB |
Output is correct |
4 |
Correct |
279 ms |
470008 KB |
Output is correct |
5 |
Correct |
276 ms |
470012 KB |
Output is correct |
6 |
Correct |
277 ms |
470264 KB |
Output is correct |
7 |
Correct |
279 ms |
470008 KB |
Output is correct |
8 |
Correct |
350 ms |
470776 KB |
Output is correct |
9 |
Correct |
342 ms |
470776 KB |
Output is correct |
10 |
Correct |
348 ms |
470648 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
275 ms |
470136 KB |
Output is correct |
2 |
Correct |
278 ms |
470008 KB |
Output is correct |
3 |
Correct |
279 ms |
470008 KB |
Output is correct |
4 |
Correct |
279 ms |
470008 KB |
Output is correct |
5 |
Correct |
276 ms |
470012 KB |
Output is correct |
6 |
Correct |
1640 ms |
477036 KB |
Output is correct |
7 |
Correct |
1453 ms |
477136 KB |
Output is correct |
8 |
Correct |
1466 ms |
477052 KB |
Output is correct |
9 |
Execution timed out |
2082 ms |
476968 KB |
Time limit exceeded |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
275 ms |
470136 KB |
Output is correct |
2 |
Correct |
278 ms |
470008 KB |
Output is correct |
3 |
Correct |
279 ms |
470008 KB |
Output is correct |
4 |
Correct |
279 ms |
470008 KB |
Output is correct |
5 |
Correct |
276 ms |
470012 KB |
Output is correct |
6 |
Correct |
277 ms |
470264 KB |
Output is correct |
7 |
Correct |
279 ms |
470008 KB |
Output is correct |
8 |
Correct |
350 ms |
470776 KB |
Output is correct |
9 |
Correct |
342 ms |
470776 KB |
Output is correct |
10 |
Correct |
348 ms |
470648 KB |
Output is correct |
11 |
Correct |
1640 ms |
477036 KB |
Output is correct |
12 |
Correct |
1453 ms |
477136 KB |
Output is correct |
13 |
Correct |
1466 ms |
477052 KB |
Output is correct |
14 |
Execution timed out |
2082 ms |
476968 KB |
Time limit exceeded |
15 |
Halted |
0 ms |
0 KB |
- |