#33938: DP by cpp


ck1110890@gl.ck.tp.edu.tw (whitember)

學校 : 臺北市立建國高級中學
編號 : 208529
來源 : [211.76.71.204]
最後登入時間 :
2023-04-02 22:22:21
d784. 一、連續元素的和 -- 99學年度板橋高中校內資訊學科能力競賽 | From: [210.71.78.245] | 發表日期 : 2023-02-15 11:28

#include<bits/stdc++.h>
#define Min_n -1e5
using namespace std;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int n;
    cin>>n;
    for(int i=0;i<n;i++){
        int k;
        cin>>k;
        vector<int>dp(k,0);
        int o=Min_n;
        for(int t=1;t<=k;t++){
            int e;
            cin>>e;
            dp[t]=max(dp[t-1],0)+e;
            if(dp[t]>o) o=dp[t];
        }
        cout<<o<<"\n";
    }
}

 
ZeroJudge Forum