#include <bits/stdc++.h>
using namespace std;
#define FILENAME "1-04.in"
#define MAX_N 200005
#define MAX_Q 200005
#define MAX_LOG_N 20
struct action {
int amount;
int at_node;
action(int amt, int node) {
amount = amt;
at_node = node;
}
};
struct binary_segment_tree {
int total_nodes;
int start_node; // start node is the starting point where nothing happens yet
int last_value;
int lazyadd[4 * MAX_N];
int maxseg[4 * MAX_N];
int minseg[4 * MAX_N];
set<int> upper_bound;
void init(int n) {
total_nodes = pow(2, int(log(n) / log(2)) + 2);
start_node = total_nodes / 2;
for (int i = 0; i < (log(n) / log(2) + 1); i++)
upper_bound.insert(pow(2, i));
last_value = 0;
}
void update_max_min(int child, int parent, int sibling) {
while (parent > 0) {
maxseg[parent] = std::max(maxseg[child] + lazyadd[child],
maxseg[sibling] + lazyadd[sibling]);
minseg[parent] = std::min(minseg[child] + lazyadd[child],
minseg[sibling] + lazyadd[sibling]);
child = parent;
parent = child / 2;
sibling = child ^ 1;
};
}
void update(action act) {
int child = act.at_node + start_node + 1;
int sibling, parent;
last_value += act.amount;
do {
sibling = child ^ 1;
parent = child / 2;
if (child < sibling) {
child = parent;
} else {
lazyadd[child] += act.amount;
update_max_min(child, parent, sibling);
if (upper_bound.find(parent + 1) != upper_bound.end()) // parent not at the right border of the tree
break;
else
child = parent + 1;
}
} while (parent > 0);
}
int find_candies(int capacity) {
if (maxseg[1] - minseg[1] <= capacity) {
return last_value - minseg[1];
} else {
int parent = 1;
int left_child, right_child;
long long big = -std::numeric_limits<long long>::max();
long long small = std::numeric_limits<long long>::max();
long long current_lazy = lazyadd[1];
long long temp_big, temp_small;
do {
left_child = parent * 2;
right_child = left_child + 1;
temp_big = std::max(big,
maxseg[right_child] + lazyadd[right_child]
+ current_lazy);
temp_small = std::min(small,
minseg[right_child] + lazyadd[right_child]
+ current_lazy);
if (temp_big - temp_small >= capacity) {
parent = right_child;
} else {
big = temp_big;
small = temp_small;
parent = left_child;
}
current_lazy += lazyadd[parent];
} while (parent < start_node);
if (current_lazy < last_value) {
return capacity - (big - last_value);
} else {
return last_value - small;
}
}
}
} seg_tree;
vector<action> act_list[MAX_N];
vector<int> distribute_candies(vector<int> C, vector<int> L, vector<int> R,
vector<int> V) {
int n_node = L.size(); // number of distributions
int n_box = C.size();
vector<int> ans(n_box);
for (int i = 0; i < n_node; i++) {
act_list[L[i]].push_back(action(V[i], i)); // add this action on the segment tree if beginning distribution
act_list[R[i] + 1].push_back(action(-V[i], i)); // remove this action on the segment tree if ending distribution
}
seg_tree.init(n_node + 1);
for (int i = 0; i < n_box; i++) {
for (auto act : act_list[i])
seg_tree.update(act);
ans[i] = seg_tree.find_candies(C[i]);
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
6744 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
306 ms |
28932 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
6748 KB |
Output is correct |
2 |
Incorrect |
194 ms |
20788 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
7000 KB |
Output is correct |
2 |
Correct |
3 ms |
6748 KB |
Output is correct |
3 |
Correct |
113 ms |
20500 KB |
Output is correct |
4 |
Correct |
49 ms |
10328 KB |
Output is correct |
5 |
Correct |
154 ms |
23792 KB |
Output is correct |
6 |
Correct |
165 ms |
24500 KB |
Output is correct |
7 |
Incorrect |
167 ms |
25016 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
6744 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |