-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathD.cpp
More file actions
353 lines (255 loc) · 7.11 KB
/
Copy pathD.cpp
File metadata and controls
353 lines (255 loc) · 7.11 KB
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
/****************************** begin /template.h ******************************/
/***********************************************************************
* [?] APIO 2021 Template
* [+] Made By: Lior Yehezkely, FiveSixFiveFour
* [~] Apples are ORZ
* *********************************************************************/
/*** begin #define flags ***/
// #define USE_ORDERED_STATISTICS
// #define BIG_BIGINT
/*** end #define flags ***/
/*** begin includes ***/
#include <bits/stdc++.h>
#ifdef USE_ORDERED_STATISTICS
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
#endif
using namespace std;
/*** end includes ***/
/*** begin typedefs ***/
typedef long long int ll;
#ifdef BIG_BIGINT
typedef __int128_t bigint;
#else
typedef ll bigint;
#endif
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<vi> vvi;
typedef vector<vl> vvl;
typedef vector<pi> vpi;
typedef vector<pl> vpl;
typedef vector<vpi> vvpi;
typedef vector<vpl> vvpl;
typedef set<int> si;
typedef multiset<int> msi;
typedef set<ll> sl;
typedef multiset<ll> msl;
typedef long double ld;
template<class T> using func = function<T>;
#ifdef USE_ORDERED_STATISTICS
typedef tree<
pl,
null_type,
less<pl>,
rb_tree_tag,
tree_order_statistics_node_update>
ordered_set;
#endif
/*** end typedefs ***/
/*** begin #defines ***/
#define clrcin cin.ignore(numeric_limits<streamsize>::max(),'\n');
#define GOGOGO ios::sync_with_stdio(false); cin.tie(nullptr);
#define BYEBYE return 0;
#define all(cn) (cn).begin(), (cn).end()
#define rep(i, n) for (int i = 0; i < n; ++i)
#define csz(c) ((int)c.size())
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define fi first
#define se second
#define popcnt __builtin_popcount
#define popcntll __builtin_popcount_ll
/*** end #defines ***/
const int INFI = 1e9 + 5;
const ll INFL = 1e18 + 5;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
auto dist = uniform_int_distribution<int>(0, INFI);
auto distll = uniform_int_distribution<ll>(0, INFL);
int rnd() { return dist(rng); }
ll rndl() { return distll(rng); }
/****************************** end /template.h ******************************/
/****************************** begin /main.cpp ******************************/
/*** begin #define flags ***/
#define BRUH_WHY_TESTCASES
//#define PREC 7
//#define INPUT_FILE "hi.in"
//#define OUTPUT_FILE "hi.out"
/*** end #define flags ***/
const int maxn = 5e4 + 5;
ll a[maxn];
ll pre[maxn];
int nextf[maxn]; // the closest j > i such that j - i > 1 and f(i) > f(j)
int last_available[maxn];
int dp[maxn]; // minimum possible number of elements not to select in the suffix i..n, given than i is selected and i-1 is not selected
struct array_stack {
int s[maxn]; int ps;
void reset() {
ps = -1;
}
bool empty() {
return ps == -1;
}
int top() {
assert(!empty());
return s[ps];
}
void pop() {
if(!empty()) ps--;
}
void push(int val) {
s[++ps] = val;
}
};
// btw, if we needed k before and not 1 before, persistent stack is preferred instead of this trick
array_stack s1; // curr
array_stack s2; // 1 before
int n; ll x;
ll f(int i) {
return pre[i] - (((ll)i)-1ll) * x;
}
void update_stack(array_stack& stack, int index) {
while(!stack.empty() && f(index) <= f(stack.top())) {
stack.pop();
}
stack.push(index);
}
void init() {
s1.reset(); s2.reset();
}
void input() {
cin >> n;
rep(i, n) {
cin >> a[i+1];
}
cin >> x;
}
void calc_pre() {
for(int i = 1; i <= n; i++) {
pre[i] = a[i] + pre[i-1];
}
}
void calc_nextf() {
nextf[n+1] = n+1;
nextf[n] = n+1;
nextf[n-1] = n+1;
// let's just guess that doing something ugly like this is O(n) (probably bounded by 8n or some weird wizadry)
update_stack(s2, n);
update_stack(s1, n);
update_stack(s1, n-1);
for(int i = n - 2; i >= 0; i--) {
// calculating nextf[i]
nextf[i] = n + 1;
// this is O(n) because it's guarranteed that these values will disappear within O(1) steps in the loop, so they are touched O(1) times
for(int j = s2.ps; j >= 0; j--) {
if(f(i) > f(s2.s[j])) {
nextf[i] = s2.s[j]; break;
}
}
update_stack(s2, i+1);
update_stack(s1, i);
}
}
void calc_last_available() {
last_available[n]= n;
for(int i = n-1; i >= 1; i--) {
last_available[i] = min(last_available[i+1], nextf[i-1]-1);
}
}
void calc_dp() {
dp[n] = 0;
dp[n+1] = 0;
dp[n+2] = 0;
dp[n+3] = 0;
for(int i = n - 1; i >= 1; i--) {
int last = last_available[i];
// claim: either choose everything up to last-1, then choose last+1
// or choose everything up to last, then choose last+2 or last+3
dp[i] = ((last+1>n)?0:1) + min(dp[last+2], ((last+2>n)?0:1) + dp[last+3]);
if(last > i) {
dp[i] = min(dp[i], 1 + dp[last+1]);
}
}
}
void debug() {
cout << "DEBUG" << endl << endl;
cout << "a: ";
for(int i = 1; i <= n; i++) {
cout << a[i] << ' ';
}
cout << endl;
cout << "p: ";
for(int i = 0; i <= n; i++) {
cout << pre[i] << ' ';
}
cout << endl;
cout << "f: ";
for(int i = 0; i <= n; i++) {
cout << f(i) << ' ';
}
cout << endl;
cout << "n: ";
for(int i = 0; i <= n; i++) {
cout << nextf[i] << ' ';
}
cout << endl;
cout << "l: ";
for(int i = 1; i <= n; i++) {
cout << last_available[i] << ' ';
}
cout << endl;
cout << "d: ";
for(int i = 1; i <= n; i++) {
cout << dp[i] << ' ';
}
cout << endl;
cout << endl;
}
void solve(int t) {
init();
input();
if(n == 1) {
cout << 1 << '\n'; return;
}
calc_pre();
calc_nextf();
calc_last_available();
calc_dp();
//debug();
cout << n - min(dp[1], 1+dp[2]) << '\n'; // if 2 is not chosen, not choosing 1 is dumb, hence atleast one of them is chosen in the optimal solution
}
signed main()
{
#ifdef INPUT_FILE
freopen(INPUT_FILE, "r", stdin);
#endif
#ifdef OUTPUT_FILE
freopen(OUTPUT_FILE, "w", stdout);
#endif
GOGOGO
#ifdef PREC
cout << fixed << setprecision(PREC);
#endif
int t=1;
#ifdef BRUH_WHY_TESTCASES
cin >> t;
#endif
int count = 1;
while(t--)
{
//cout << "Case #" << count << ":";
solve(count);
count += 1;
}
BYEBYE
}
/* PLEASE READ THIS
* N = 1
* GUESS A!!!!!!!
* DO SOMETHING INSTEAD OF NOTHING
*/
/****************************** end /main.cpp ******************************/