1일1알

백준 1817번 짐 챙기는 숌 C++ 본문

알고리즘

백준 1817번 짐 챙기는 숌 C++

영춘권의달인 2022. 5. 6. 15:59

출처 : https://www.acmicpc.net/problem/1817

 

#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>

using namespace std;
using ll = long long;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	int n, m;
	cin >> n >> m;
	int cnt = 0;
	int weight = m;
	for (int i = 0; i < n; i++) {
		int book;
		cin >> book;
		if (weight + book > m) {
			cnt++;
			weight = book;
		}
		else {
			weight += book;
		}
	}
	cout << cnt;
};

'알고리즘' 카테고리의 다른 글

백준 14890번 경사로 C++  (0) 2022.05.09
백준 14499번 주사위 굴리기 C++  (0) 2022.05.08
백준 2116번 주사위 쌓기 C++  (0) 2022.05.05
백준 1756번 피자 굽기 C++  (0) 2022.05.03
백준 1544번 사이클 단어 C++  (0) 2022.05.02