解题思路:
用一个函数bool satisfy(int useIndex)可行则削减原材料数量,不可行直接返回false
注意事项:
参考代码:
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <stdio.h> using namespace std; int materialCount[4]; int useCount[5][4] = { {2,1,0,2},{1,1,1,1},{0,0,2,1},{0,3,0,0},{1,0,0,1} }; int productCount[5]; bool satisfy(int useIndex) { if (useCount[useIndex][0] <= materialCount[0] && useCount[useIndex][1] <= materialCount[1] && useCount[useIndex][2] <= materialCount[2] && useCount[useIndex][3] <= materialCount[3]) { materialCount[0] -= useCount[useIndex][0]; materialCount[1] -= useCount[useIndex][1]; materialCount[2] -= useCount[useIndex][2]; materialCount[3] -= useCount[useIndex][3]; return true; } else return false; } void solve() { for (int i = 0;i < 5;i++) while (satisfy(i)) productCount[i] += 1; return; } int main(int argc, char** argv) { for (int i = 0; i < 4; i++) cin >> materialCount[i]; solve(); for (int i = 0; i < 5; i++) cout << productCount[i] << endl; return 0; }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:658 |
C语言训练-求函数值 (C语言代码)浏览:976 |
P1001 (C语言代码)浏览:836 |
大神老白 (C语言代码)浏览:696 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:807 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:565 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:617 |
A+B for Input-Output Practice (C语言代码)浏览:506 |
C语言训练-亲密数 (C语言描述,反正怎么都能对)浏览:2256 |
字符逆序 (C语言代码)浏览:675 |