이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define pb push_back
#define sz(x) (int)x.size()
#define all(x) begin(x),end(x)
#define lb(x,y) lower_bound(all(x),y)-begin(x)
mt19937 rng;
pair<ll, int> check(vector<int> &a, ll cost) {
pair<ll, int> n = {0, 0}, y = {LLONG_MIN, 0};
for (int i = 0; i < sz(a); i++) {
pair<ll, int> n2 = n;
if (y.first != LLONG_MIN) n2 = max(n2, y);
pair<ll, int> y2 = {n.first + a[i] - cost, n.second + 1};
if (y.first != LLONG_MIN) y2 = max(y2, {y.first + a[i], y.second});
swap(n, n2);
swap(y, y2);
}
return max(n, y);
}
ll search(vector<int> &a, int K, ll l, ll r) {
if (l > r) return LLONG_MIN;
ll mid = (l + r) / 2;
auto p = check(a, mid);
if (p.second >= K) {
ll m = search(a, K, mid + 1, r);
if (m != LLONG_MIN) return m;
return p.first + p.second * mid + mid * (K - p.second);
}
return search(a, K, l, mid - 1);
}
void solve() {
int N, K; cin >> N >> K;
vector<int> a(N);
for (int i = 0; i < a.size(); i++) cin >> a[i];
ll res = search(a, K, 1, LLONG_MAX / 2);
if (res == LLONG_MIN) cout << "0\n";
else cout << res << "\n";
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
rng = mt19937(chrono::steady_clock::now().time_since_epoch().count());
solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
feast.cpp: In function 'void solve()':
feast.cpp:42:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | for (int i = 0; i < a.size(); i++) cin >> a[i];
| ~~^~~~~~~~~~
# | 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... |