P1181 数列分段Section I
Posted xcfxcf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1181 数列分段Section I相关的知识,希望对你有一定的参考价值。
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; }
以上是关于P1181 数列分段Section I的主要内容,如果未能解决你的问题,请参考以下文章