이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int NMAX = 1e5;
int v[NMAX], sp[NMAX];
vector<int> split_points;
int sum(int l, int r) {
if(l == 0) return sp[r];
return sp[r] - sp[l - 1];
}
int main() {
int n, k;
cin >> n >> k;
for(int i = 0; i < n; i++)
cin >> v[i];
sp[0] = v[0];
for(int i = 1; i < n; i++)
sp[i] = sp[i - 1] + v[i];
long long ans = 0;
int kk = k;
while(kk--) {
int first = -1, end;
int ind = 0;
long long maxx = 0, pozmax = 0;
if(split_points.size() == 0)
end = n - 1;
else end = split_points[0];
for(int i = 0; i < n; i++) {
if(ind < split_points.size() && i == split_points[ind]) {
first = split_points[ind];
ind++;
if(ind == split_points.size())
end = n - 1;
else end = split_points[ind];
} else {
// (first, i] cu [i + 1, end]
//cout << i << ' ' << first << ' ' << end << endl;
long long val = 1LL * sum(first + 1, i) * sum(i + 1, end);
if(val >= maxx) {
maxx = val;
pozmax = i;
}
}
}
//cout << maxx << ' ' << pozmax << endl;
ans += maxx;
split_points.push_back(pozmax);
sort(split_points.begin(), split_points.end());
}
cout << ans << endl;
//cout << ans << ' ' << k << endl;
for(int i = 0; i < k; i++)
cout << split_points[i] + 1 << ' ';
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
sequence.cpp: In function 'int main()':
sequence.cpp:34:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | if(ind < split_points.size() && i == split_points[ind]) {
| ~~~~^~~~~~~~~~~~~~~~~~~~~
sequence.cpp:37:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | if(ind == split_points.size())
| ~~~~^~~~~~~~~~~~~~~~~~~~~~
# | 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... |