码迷,mamicode.com
首页 > 其他好文 > 详细

P1181 数列分段Section I

时间:2020-02-26 11:34:30      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:cti   const   ret   pen   clu   eve   namespace   ref   lse   

https://www.luogu.com.cn/problem/P1181

模拟一下这个过程

从第一个数开始,如果符合条件.res += a[i];

不符合的话,ans++;res = 0,res += a[i];

技术图片
#include<bits/stdc++.h>

using namespace std;
const int maxn = 1e5 + 10;
int a[maxn];
int n, m;
int ans = 1;

int main() {
    ios::sync_with_stdio(0);
    cin >> n >> m;
    int res = 0;
    for (int i = 0; i < n; i++)
        cin >> a[i];
    for (int i = 0; i < n; i++) {
        if (res + a[i] > m) {
            ans++;
            res = 0;
        }
       res += a[i];
    }
    cout << ans;

    return 0;
}
View Code

 

P1181 数列分段Section I

标签:cti   const   ret   pen   clu   eve   namespace   ref   lse   

原文地址:https://www.cnblogs.com/xcfxcf/p/12365861.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!