A bus stop queue has n groups of people. The i-th group from the beginning has ai people. Every 30 minutes an empty bus arrives at the bus stop, it can carry at most m people. Naturally, the people from the first group enter the bus first. Then go the people from the second group and so on. Note that the order of groups in the queue never changes. Moreover, if some group cannot fit all of its members into the current bus, it waits for the next bus together with other groups standing after it in the queue. Your task is to determine the number of buses needed to transport all n groups to the dacha countryside. FUNCTIONAL REQUIREMENTS: void queue(int,int,int*); .
Answers
Answered by
0
Answer:
ldont understand stand you question
Answered by
0
Answer:
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int a[105];
int main()
{
int n, m;
scanf("%d %d", &n, &m);
for(int i = 0; i < n; i++)
scanf("%d", &a[i]);
int ans = 1;
int now = m;
for(int i = 0; i < n;)
{
if(a[i] <= now)
{
now -= a[i];
i ++;
}
else
{
now = m;
ans ++;
}
}
printf("%d\n", ans);
}
Explanation:
Similar questions