本文主要是介绍Uva - 10970 - Big Chocolate,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题意:把一块M x N的巧克力分成1 x 1的巧克力,最小需要多少刀(一刀只能切一块巧克力,1 <= M <= 300, 1 <= N <= 300)。
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=457&problem=1911
——>>想想。。。
#include <cstdio>using namespace std;int main()
{int M, N;while(scanf("%d%d", &M, &N) == 2){printf("%d\n", M * N - 1);}return 0;
}
这篇关于Uva - 10970 - Big Chocolate的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!