题解 CF785A Anton and Polyhedrons

Posted sworddust

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题解 CF785A Anton and Polyhedrons相关的知识,希望对你有一定的参考价值。

这题,还需要多说吗??。。。
“Tetrahedron”表示四面体; “Cube”表示立方体; “Octahedron”表示八面体; “Dodecahedron”表示十二面体; “Icosahedron”表示二十面体。
而正解,恰恰就是我们所有面的总和啊!

#include<bits/stdc++.h>//万能头
using namespace std;
int n,ans=0;
string s;
int main(){
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>s;
        if(s=="Tetrahedron")//如果是四面体
            ans+=4;//ans加上4
        else if(s=="Cube")//如果是立方体
            ans+=6;//ans加上6
        else if(s=="Octahedron")//如果是八面体
            ans+=8;//ans加上8
        else if(s=="Dodecahedron")//如果是十二面体
            ans+=12;//ans加上12
        else if(s=="Icosahedron")//如果是二十面体
            ans+=20;//ans加上20
    }
    cout<<ans<<endl;//输出答案
    return 0;
}

 

以上是关于题解 CF785A Anton and Polyhedrons的主要内容,如果未能解决你的问题,请参考以下文章

题解 CF734F Anton and School

题解 CF785E Anton and Permutation

题解 CF785E Anton and Permutation

[CF785E]Anton and Permutation

CF785D Anton and School - 2

CF734F Anton and School 构造+数论