Codeforces Round 899 (Div. 2) C题 补题记录

https://codeforces.com/contest/1882/problem/C

思路

  1. 从第 3 个数开始的所有正数都可取到.(可手动模拟验证)
  2. 对于前两个数,若负负,则不取;若正正,则两个都取;若正负,则取第一个;若负正,则在两个都取和都不取之间取较大值。综合起来就是 max(0,a_1+a_2,a_1) .

代码

#include <iostream>
#include <algorithm>
using namespace std;

typedef long long ll;

const int N = 2e5 + 5;
int a[N];

void solve()
{
    int n;
    cin >> n;
    if (n == 1)
    {
        cin >> a[1];
        cout << max(0, a[1]) << endl;
        return;
    }
    for (int i = 1; i <= n; ++i) cin >> a[i];
    ll ans = max({0, a[1] + a[2], a[1]}); //--, ++/-+, +-
    for (int i = 3; i <= n; ++i) if (a[i] > 0) ans += a[i];
    cout << ans << endl;
}

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int t;
    cin >> t;
    while (t--)
    {
        solve();
    }
    return 0;
}

 总结

这题也属于思维题,代码比较短,但需要一定的思维量,挺有意思的。

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Washington2022

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值