[BOJ] 19942번 다이어트 (C++)
https://www.acmicpc.net/problem/19942 19942번: 다이어트 식재료 N개 중에서 몇 개를 선택해서 이들의 영양분(단백질, 탄수화물, 지방, 비타민)이 일정 이상이 되어야 한다. 아래 표에 제시된 6가지의 식재료 중에서 몇 개를 선택해서 이들의 영양분의 각 www.acmicpc.net #include #include using namespace std; struct Ingredient{ int p, f, s, v, c; }; int n, mp, mf, ms, mv; vector v; vector tmp; vector ans; int answer = 987654321; void dfs(int idx, int sp, int sf, int ss, int sv, int sc){ if..
[CodeTree] 나무박멸 (C++) [삼성 SW 역량테스트 기출]
https://www.codetree.ai/training-field/frequent-problems/problems/tree-kill-all 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요. www.codetree.ai #include using namespace std; int n, m, k, c, answer; int map[20][20]; int dx1[4] = {0, 0, -1, 1}; int dy1[4] = {-1, 1, 0, 0}; int dx2[4] = {-1, -1, 1, 1}; int dy2[4] = {-1, 1, -1, 1}; void Growth(){ for(..