-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsegment.cpp
249 lines (224 loc) · 7.77 KB
/
segment.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#include <iostream>
#include <string.h>
#include <algorithm>
#include <queue>
#include <math.h>
#include <vector>
#include <ctype.h>
#define llu unsigned long long
// #pragma GCC optimize("O3,Ofast,no-stack-protector,unroll-loops,fast-math")
// #pragma GCC target("sse,sse2,sse3,ssse3,sse4.1,sse4.2,avx,avx2,popcnt,tune=native")
using namespace std;
int N,M;
llu K, arr[200002],res[200002];
struct line{
int L,R,index;
llu W;
};
struct compare{
bool operator()(const line& a,const line& b){
return (a.R < b.R);
}
};
bool cmp(const line &a, const line &b) {
return a.L < b.L;
}
line Line[200002];
int main(){
int i,j,k;
scanf("%d%d%llu",&N,&M,&K);
for(i=0;i<N;i++){
scanf("%d%d%llu",&Line[i].L,&Line[i].R,&Line[i].W);
Line[i].index=i;
}
sort(Line,&Line[N],cmp);
// for(i=0;i<N;i++){printf("%d %d %lld\n",Line[i].L,Line[i].R,Line[i].W);}
/* 0 沒被蓋到,直接 return */
if(Line[0].L != 0){
printf("%d\n",0);
for(i=0;i<N;i++){
printf("%d ",0);
}
printf("\n");
return 0;
}
/* 0 沒被蓋到,直接 return */
llu l=0, r=K, w, sum, chosen;
int next_line;
line temp;
priority_queue<line,vector<line>,compare> h;
// for(i=0;i<N;i++){h.push(Line[i]);}
// for(i=0;i<N;i++){
// line temp = h.top();
// h.pop();
// printf("%d %d %lld\n",temp.L,temp.R,temp.W);
// }
while(r-l >1){ // 二分搜尋
/* 目標 f(x) */
w = (l+r)/2;
/* 目標 f(x) */
/* 歸零 */
while(!h.empty()){h.pop();} // heap 清空
for(j=0;j<=M;++j){arr[j]=(llu)0;}
next_line = 0;
sum = 0;
chosen = 0;
/* 歸零 */
// printf("l=%lld r=%lld w=%lld\n",l,r,w);
for(i=0;i<=M;++i){
// printf("i = %d\n",i);
/* 左界 == 目前座標則 enqueue */
while(next_line<=N && Line[next_line].L == i){
// printf("Enqueue %d %d\n",Line[next_line].L,Line[next_line].R);
h.push(Line[next_line]);
next_line++;
}
/* 左界 == 目前座標則 enqueue */
/* 線段不足的時候從 heap 拿出右界最大的 */
if(i<M){
sum-=arr[i]; // 檢查有沒有線段在這格開始無法蓋到
arr[i]=0;
}
// printf("sum = %lld\n",sum);
while((!h.empty()) && sum < w){ // 一直 pop 直到這個點被蓋到 w 次
temp = h.top();
// printf("Dequeue %d %d\n",temp.L,temp.R);
h.pop();
if(temp.R<i)
break;
if(i>0 && arr[i-1]>0 && temp.L>=i)
break;
if(temp.W > (w-sum)){ // 拿出來的線段比我需要的還"多"
chosen+=(w-sum);
temp.W-=(w-sum);
arr[temp.R] += (w-sum); // 從 temp.R 開始,他會蓋不到
sum = w; // sum = sum + w - sum = w
h.push(temp); // 還沒用完,push 回去
}else{ // 拿出來的線段比我需要的還"少"
sum+=temp.W;
chosen+=temp.W;
arr[temp.R] += temp.W; // 從 temp.R 開始,他會蓋不到
}
}
/* 線段不足的時候從 heap 拿出右界最大的 */
// printf("chosen = %lld\n",chosen);
if(chosen>K || sum<w){ // 這個 w 不可能達成
r = w-1;
break;
}
if(i<M){ // 有可能剛剛剛拿出來的 line 右界剛好只到他自己
sum-=arr[i]; // 檢查有沒有線段在這格開始無法蓋到
}
}
if(i>M){ // for 跑完,代表這個 w 可以達成
l = w;
}
}
if(l!=r){
w = r; // 檢查 w=r 可不可行
/* 歸零 */
while(!h.empty()){h.pop();}
for(j=0;j<=M;++j){arr[j]=(llu)0;}
next_line = 0;
sum = 0;
chosen = 0;
/* 歸零 */
for(i=0;i<=M;++i){
// printf("i = %d\n",i);
/* 左界 == 目前座標則 enqueue */
while(next_line<=N && Line[next_line].L == i){
h.push(Line[next_line]);
next_line++;
}
/* 左界 == 目前座標則 enqueue */
/* 線段不足的時候從 heap 拿出右界最大的 */
if(i<M){
sum-=arr[i]; // 檢查有沒有線段在這格開始無法蓋到
arr[i]=0;
}
// printf("sum = %lld\n",sum);
while((!h.empty()) && sum < w){ // 一直 pop 直到這個點被蓋到 w 次
temp = h.top();
// printf("Dequeue %d %d\n",temp.L,temp.R);
h.pop();
if(temp.R<i)
break;
if(i>0 && arr[i-1]>0 && temp.L>=i)
break;
if(temp.W > (w-sum)){ // 線段比我要的還多
chosen+=(w-sum);
temp.W-=(w-sum);
arr[temp.R] += (w-sum); // 從 temp.R 開始,他會蓋不到
sum = w; // sum = sum + w - sum = w
h.push(temp);
}else{ // 線段還不夠
sum+=temp.W;
chosen+=temp.W;
arr[temp.R] += temp.W; // 從 temp.R 開始,他會蓋不到
}
}
/* 線段不足的時候從 heap 拿出右界最大的 */
if(chosen>K || sum<w){ // 這個 w 不可能達成
r = l;
break;
}
if(i<M){
sum-=arr[i]; // 檢查有沒有線段在這格開始無法蓋到
}
}
if(l!=r){ // for 跑完,代表這個 w 可以達成
l = r;
}
}
/* 找答案 */
w = l;
/* 歸零 */
while(!h.empty()){h.pop();}
for(j=0;j<=M;++j){arr[j]=(llu)0;}
for(j=0;j<=N;++j){res[j]=(llu)0;}
next_line = 0;
sum = 0;
chosen = 0;
/* 歸零 */
for(i=0;i<=M;++i){
// printf("i = %d\n",i);
/* 左界 == 目前座標則 enqueue */
while(next_line<=N && Line[next_line].L == i){
h.push(Line[next_line]);
next_line++;
}
/* 左界 == 目前座標則 enqueue */
/* 線段不足的時候從 heap 拿出右界最大的 */
if(i<M){
sum-=arr[i]; // 檢查有沒有線段在這格開始無法蓋到
arr[i]=0;
}
while((!h.empty()) && sum < w){ // 一直 pop 直到這個點被蓋到 w 次
temp = h.top();
h.pop();
if(temp.W > (w-sum)){ // 線段比我要的還多
res[temp.index]+=(w-sum);
chosen+=(w-sum);
temp.W-=(w-sum);
arr[temp.R] += (w-sum); // 從 temp.R 開始,他會蓋不到
sum = w; // sum = sum + w - sum = w
h.push(temp);
}else{ // 線段還不夠
res[temp.index]+=temp.W;
sum+=temp.W;
chosen+=temp.W;
arr[temp.R] += temp.W; // 從 temp.R 開始,他會蓋不到
}
}
if(i<M){
sum-=arr[i]; // 檢查有沒有線段在這格開始無法蓋到
arr[i]=0;
}
}
printf("%llu\n",l);
for(i=0;i<N;++i){
printf("%llu ",res[i]);
}
printf("\n");
return 0;
}