UVa 10970 Big Chocolate (想一下就AC了)
Posted dwtfukgv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVa 10970 Big Chocolate (想一下就AC了)相关的知识,希望对你有一定的参考价值。
题意:给你一个m*n的巧克力,让人把它切成1*1的,但是每次只能切一下,问要切多少刀。
析:简单啊,我就不明白了 怎么那么多人TLE了,不会当DP做了吧,其实不用的。
假设有一个1*m的巧克力,很明显知道是切m-1刀,那么再把n把变成1,要n-1刀,加起来就OK。
代码如下:
#include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <vector> #include <string> #include <algorithm> using namespace std; int main(){ int n, m; while(~scanf("%d %d", &n, &m)){ printf("%d\n", n-1 + n * (m-1)); } return 0; }
以上是关于UVa 10970 Big Chocolate (想一下就AC了)的主要内容,如果未能解决你的问题,请参考以下文章
UVa 10970 Big Chocolate (想一下就AC了)
UVa Live 4794 - Sharing Chocolate 枚举子集substa = (s - 1) & substa,记忆化搜索 难度: 2