Codeforces Round #517 Div. 2 #A

Posted rmy020718

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #517 Div. 2 #A相关的知识,希望对你有一定的参考价值。

http://codeforces.com/contest/1072/problem/A

 

题目挺简单,就是让你求几个环,占得方格的个数,然而题目为什么给出了公式呢?

然而给出的公式辣么丑,还是不用的好。

我们看一个$n imes m$的环型,它的占得方个数为$(n+m) imes 2 -4 $

每次换的大小长宽各减4,那么我们计算就好了。

#include <algorithm>
#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
int n,m,k,ans;
int main()
{
    scanf("%d%d%d",&n,&m,&k);
    for(int i=1;i<=k;i++)
    {
        ans+=(n+m)*2;
        n-=4;
        m-=4;
    }
    ans-=k*4;
    printf("%d",ans);
}

 

以上是关于Codeforces Round #517 Div. 2 #A的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #517 (Div. 2, based on Technocup 2019 Elimination Round 2)D(思维,DP,字符串)

Codeforces Round #705 (Div. 2)

Codeforces Round #774 (Div. 2)

Codeforces Round #808 (Div. 1)(A~C)

Codeforces Round #717 (Div. 2)

Codeforces Round #784 (Div. 4)