이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
constexpr size_t N = 300000;
int64_t a[N];
pair<int64_t, int64_t> dp(size_t n, int64_t lambda)
{
int64_t mu = 0, nu = 0, p = 0, cnt = 0;
for (size_t i = 0; i < n; ++i)
{
p += a[i];
if (mu + p - lambda > nu)
nu = mu + p - lambda, ++cnt;
mu = max(mu, nu - p);
}
return {nu, cnt};
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
size_t n, k;
cin >> n >> k;
for (size_t i = 0; i < n; ++i)
cin >> a[i];
int64_t u = 0, v = 1LL << 55;
while (u < v)
{
if (dp(n, (u + v) / 2).second <= k)
v = (u + v) / 2;
else
u = (u + v) / 2 + 1;
}
auto const [objective_val, cnt] = dp(n, u);
cout << objective_val + k * u << '\n';
}
컴파일 시 표준 에러 (stderr) 메시지
feast.cpp: In function 'int main()':
feast.cpp:34:39: warning: comparison of integer expressions of different signedness: 'long int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
34 | if (dp(n, (u + v) / 2).second <= k)
| ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |