博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #517(Div2) A.Golden Plate
阅读量:4950 次
发布时间:2019-06-11

本文共 1894 字,大约阅读时间需要 6 分钟。

A. Golden Plate
time limit per test1 second memory limit per test256 megabytes input:standard input output:standard output

You have a plate and you want to add some gilding to it. The plate is a rectangle that we split into w×h cells.There should be k gilded rings, the first one should go along the edge of the plate, the second one — 2 cells away from the edge and so on. Each ring has a width of 1 cell. Formally, the i-th of these rings should consist of all bordering cells on the inner rectangle of size (w−4(i−1))×(h−4(i−1)).

a41cb08acf913c9a7e1039de23fd778b0d753acb.png

The picture corresponds to the third example.

Your task is to compute the number of cells to be gilded.

Input

The only line contains three integers w, h and k (3≤w,h≤100, 1≤k≤⌊min(n,m)+14⌋, where ⌊x⌋ denotes the number x rounded down) — the number of rows, columns and the number of rings, respectively.

Output

Print a single positive integer — the number of cells to be gilded.

Examples

input

3 3 1

output

8

input

7 9 1

output

28

input

7 9 2

output

40

Note

The first example is shown on the picture below.

ed5f2b73257c9152b95bab226470d2a8e66e7532.png

The second example is shown on the picture below.

87b803fcfc43bcfd85f5d082a8cae07b62ca3cc7.png

The third example is shown in the problem description.

题解

题目大意是给一个 宽X长 的一个矩形,从最外围开始铺 “金砖” ,最外围作为第一层,如果还有第二层,则从宽为 w-4(i-1), 长为 h-4(i-1) (i>1)的矩形的最外层开始铺,问能有多少 “金砖”。

仔细观察便可得到,当只铺第一层时,总的 “金砖” 是 2(w-2) + 2h, 当铺第二层时,第二层铺的“金砖”是在原先的 w 和 h 的基础上减 4 后再应用上述公式,所以很容易就能得到代码。在 w 和 h 大于 0 的条件下应用 k 次上述公式并求和就可得出答案。代码如下:

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define ll long longusing namespace std ;int main(){ int w , h , k ; cin >> w >> h >> k ; int ans = 0 ; while ( k -- ){ ans += 2 * (w - 2) + 2 * h ; w -= 4 ; h -= 4 ; if ( w <= 0 || h <= 0 ){ break ; } } cout << ans << endl ; return 0 ;}

转载于:https://www.cnblogs.com/Cantredo/p/9827214.html

你可能感兴趣的文章
DotNetty网络通信框架学习之源码分析
查看>>
8.1 Android Basic 数据存储 Preferences Structured(分组的Preferences)
查看>>
原因和证明
查看>>
VC6.0图像处理2--图像的反色
查看>>
Snoop, 对WPF程序有效的SPY++机制
查看>>
Does not contain a valid host;port authority解决方法
查看>>
JAVA程序猿怎么才干高速查找到学习资料?
查看>>
使用axel下载百度云文件
查看>>
Qt中图像的显示与基本操作
查看>>
详解软件工程之软件测试
查看>>
WCF(二) 使用配置文件实现WCF应用程序
查看>>
【CodeForces 803 C】Maximal GCD(GCD+思维)
查看>>
python 去掉换行符或者改为其他方式结尾的方法(end='')
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
REST构架风格介绍:状态表述转移
查看>>
struct {0}初始化
查看>>
c++ operator
查看>>
apache 添加 ssl_module
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>