/*
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
#pragma GCC optimize("unroll-loops")
*/
#include <bits/stdc++.h>
using namespace std;
#define all(x) x.begin(), x.end()
#define len(x) ll(x.size())
#define eb emplace_back
#define PI acos(-1.0)
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define MIN(v) *min_element(all(v))
#define MAX(v) *max_element(all(v))
#define BIT(x, i) (1 & ((x) >> (i)))
#define MASK(x) (1LL << (x))
#define task "tnc"
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rep1(i, n) for (int i = 1; i <= (n); i++)
typedef long long ll;
typedef long double ld;
const ll INF = 1e14;
const int maxn = 1e6 + 5;
const int mod = 1e9 + 7;
const int mo = 998244353;
using pi = pair<ll, ll>;
using vi = vector<ll>;
using pii = pair<pair<ll, ll>, ll>;
mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
ll n, k;
ll a[maxn];
ll dp[maxn];
ll trace[maxn];
ll pre[maxn];
ll f(ll mid)
{
// dp[i] = max(dp[i-1],dp[j]+dp[i]-pre[j]+pre[i]-mid);
dp[0] = 0;
ll ma = 0;
ll vt = 0;
trace[0] = 0;
for (int i = 1; i <= n; i++)
{
dp[i] = 0;
trace[i] = 0;
}
for (int i = 1; i <= n; i++)
{
if (dp[i - 1] <= ma + pre[i] - mid)
{
dp[i] = ma + pre[i] - mid;
trace[i] = trace[vt] + 1;
}
else
{
trace[i] = trace[i - 1];
}
if (ma <= dp[i] - pre[i])
{
ma = dp[i] - pre[i];
vt = i;
}
}
return trace[n];
}
void solve()
{
cin >> n >> k;
for (int i = 1; i <= n; i++)
{
cin >> a[i];
pre[i] = pre[i - 1] + a[i];
}
ll l = 0;
ll r = INF;
ll ans;
ll ans1;
while (l <= r)
{
ll mid = (l + r) / 2;
if (f(mid) >= k)
{
ans = dp[n];
ans1 = mid;
l = mid + 1;
}
else
{
r = mid - 1;
}
}
cout << ans + ans1 * k;
}
signed main()
{
cin.tie(0), cout.tie(0)->sync_with_stdio(0);
solve();
}
Compilation message
feast.cpp: In function 'void solve()':
feast.cpp:97:24: warning: 'ans1' may be used uninitialized in this function [-Wmaybe-uninitialized]
97 | cout << ans + ans1 * k;
| ~~~~~^~~
feast.cpp:97:26: warning: 'ans' may be used uninitialized in this function [-Wmaybe-uninitialized]
97 | cout << ans + ans1 * k;
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
45 ms |
9440 KB |
Output is correct |
2 |
Correct |
50 ms |
11200 KB |
Output is correct |
3 |
Correct |
48 ms |
11292 KB |
Output is correct |
4 |
Correct |
50 ms |
11364 KB |
Output is correct |
5 |
Correct |
54 ms |
11340 KB |
Output is correct |
6 |
Correct |
46 ms |
11060 KB |
Output is correct |
7 |
Correct |
48 ms |
11032 KB |
Output is correct |
8 |
Correct |
47 ms |
11304 KB |
Output is correct |
9 |
Correct |
48 ms |
11132 KB |
Output is correct |
10 |
Correct |
48 ms |
11140 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
54 ms |
9396 KB |
Output is correct |
2 |
Correct |
51 ms |
9644 KB |
Output is correct |
3 |
Correct |
51 ms |
9484 KB |
Output is correct |
4 |
Incorrect |
43 ms |
10612 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
70 ms |
9636 KB |
Output is correct |
2 |
Correct |
71 ms |
11172 KB |
Output is correct |
3 |
Correct |
71 ms |
11140 KB |
Output is correct |
4 |
Correct |
72 ms |
11080 KB |
Output is correct |
5 |
Correct |
73 ms |
11224 KB |
Output is correct |
6 |
Correct |
73 ms |
11324 KB |
Output is correct |
7 |
Correct |
71 ms |
11352 KB |
Output is correct |
8 |
Correct |
86 ms |
11160 KB |
Output is correct |
9 |
Correct |
77 ms |
11408 KB |
Output is correct |
10 |
Correct |
73 ms |
11352 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
45 ms |
9440 KB |
Output is correct |
2 |
Correct |
50 ms |
11200 KB |
Output is correct |
3 |
Correct |
48 ms |
11292 KB |
Output is correct |
4 |
Correct |
50 ms |
11364 KB |
Output is correct |
5 |
Correct |
54 ms |
11340 KB |
Output is correct |
6 |
Correct |
46 ms |
11060 KB |
Output is correct |
7 |
Correct |
48 ms |
11032 KB |
Output is correct |
8 |
Correct |
47 ms |
11304 KB |
Output is correct |
9 |
Correct |
48 ms |
11132 KB |
Output is correct |
10 |
Correct |
48 ms |
11140 KB |
Output is correct |
11 |
Correct |
54 ms |
9396 KB |
Output is correct |
12 |
Correct |
51 ms |
9644 KB |
Output is correct |
13 |
Correct |
51 ms |
9484 KB |
Output is correct |
14 |
Incorrect |
43 ms |
10612 KB |
Output isn't correct |
15 |
Halted |
0 ms |
0 KB |
- |