代码拉取完成,页面将自动刷新
#include <iostream>
using namespace std;
int main() {
int len, pre;
cin >> len >> pre;
int max = pre, tmp, max_left = 1, max_right = 1, left = 1, right = 1;
for (int i = 1; i < len; i++) {
cin >> tmp;
if (pre > 0) {
pre += tmp;
right = i + 1;
} else if (pre < tmp) {
pre = tmp;
left = right = i + 1;
}
if (pre > max) {
max = pre;
max_left = left;
max_right = right;
}
cout << left << " " << right << endl;
}
cout << max_left << " " << max_right << " " << max;
return 0;
}
/* case input:
10 1 2 -3 -4 5 6 -7 5 9 -10
7 -100 6 -3 8 -9 10 -100
5 -100 7 -9 12 -100
5 -100 6 -100 8 -100
*/
/* case output:
18
12
12
8
*/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。