Alternating Subsequence _牛哄哄的柯南

举报
牛哄哄的柯南 发表于 2021/05/27 00:00:35 2021/05/27
【摘要】 题目链接: Alternating Subsequence C. Alternating Subsequence time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Recall that the sequenc...

题目链接: Alternating Subsequence

C. Alternating Subsequence
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Recall that the sequence b is a a subsequence of the sequence a if b can be derived from a by removing zero or more elements without changing the order of the remaining elements. For example, if a=[1,2,1,3,1,2,1], then possible subsequences are: [1,1,1,1], [3] and [1,2,1,3,1,2,1], but not [3,2,3] and [1,1,1,1,2].

You are given a sequence a consisting of n positive and negative elements (there is no zeros in the sequence).

Your task is to choose maximum by size (length) alternating subsequence of the given sequence (i.e. the sign of each next element is the opposite from the sign of the current element, like positive-negative-positive and so on or negative-positive-negative and so on). Among all such subsequences, you have to choose one which has the maximum sum of elements.

In other words, if the maximum length of alternating subsequence is k then your task is to find the maximum sum of elements of some alternating subsequence of length k.

You have to answer t independent test cases.

Input
The first line of the input contains one integer t (1≤t≤104) — the number of test cases. Then t test cases follow.

The first line of the test case contains one integer n (1≤n≤2⋅105) — the number of elements in a. The second line of the test case contains n integers a1,a2,…,an (−109≤ai≤109,ai≠0), where ai is the i-th element of a.

It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 (∑n≤2⋅105).

Output
For each test case, print the answer — the maximum sum of the maximum by size (length) alternating subsequence of a.

Example
inputCopy
4
5
1 2 3 -1 -2
4
-1 -2 -1 -3
10
-2 8 3 8 -4 -15 5 -2 -3 1
6
1 -1000000000 1 -1000000000 1 -1000000000
outputCopy
2
-1
6
-2999999997
题意:就是给你一串数你需要找出其中的子串,并且这个子串是正负交替的,并且尽量让这个子串的和最大。
思路:这样的处理,就栈用着最方便了,对前面的数是正是负稍加判断,分别处理就好了。

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main()
{ int t; cin>>t; while(t--) { stack<int> s; int n; cin>>n; int flag=1; int k; cin>>k; s.push(k);  // 先插入第一个 if(k<0)  // 先判断下第一个 { flag=0; // 当前位为负数 } else { flag=1;  // 当前位为正数 } for(int i=1;i<n;i++) { cin>>k; if(flag==0)  // 当前位为负数 { if(k<0&&k>s.top())  // 后一位为负的并且比当前栈顶大,替换掉 { s.pop(); s.push(k); } if(k>0)  // 与其符号相反,压入即可 { s.push(k); flag=1; } } else  // 当前位为正数 { if(k>0&&k>s.top())  // 后一位为正的并且比当前栈顶大,替换掉 { s.pop(); s.push(k); } if(k<0) // 与其符号相反,压入即可 { s.push(k); flag=0; } } } ll num=0; while(!s.empty())  // 累加求和,输出即可 { //cout<<s.top()<<" "; num+=s.top(); s.pop(); } cout<<num<<endl;  //输出即可 } return 0;
}


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69

共同加油!
坚持!

本人博客同文地址: Alternating Subsequence _牛哄哄的柯南

谢谢大家支持!

文章来源: keafmd.blog.csdn.net,作者:牛哄哄的柯南,版权归原作者所有,如需转载,请联系作者。

原文链接:keafmd.blog.csdn.net/article/details/106268869

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。