MYF

UVa 10970 Big Chocolate

题目链接

UVa 10970

方法:机智题

题目分析

题目大意

mn的巧克力,分成mn块1*1的,问最少需要多少刀

解析

找规律,很容易发现,m*n-1就是所要的结果

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <cstring>
#include <iostream>
#include <algorithm>
#define PI acos(-1)
#define debug printf("Hi----------\n")
#define eps 1e-8
#define INF 0x3f3f3f3f
#pragma comment(linker, "/STACK:1024000000,1024000000")
typedef long long ll;
using namespace std;
#define maxn 10005
int main(){
int n,m;
while (scanf("%d%d",&n,&m)!=EOF) {
cout<<m*n-1<<endl;
}
}