当前位置: 代码迷 >> 综合 >> Uva - 10970 - Big Chocolate
  详细解决方案

Uva - 10970 - Big Chocolate

热度:93   发布时间:2024-01-10 13:30:47.0

题意:把一块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;
}