PAT乙级 1018 锤子剪刀布 (20 分)
Posted 辉小歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT乙级 1018 锤子剪刀布 (20 分)相关的知识,希望对你有一定的参考价值。
https://pintia.cn/problem-sets/994805260223102976/problems/994805304020025344
#include<cstdio>
#include<iostream>
#include<string>
#include<map>
using namespace std;
int s1,s2,s3;
int ss1,ss2,ss3;
int str1[3];
int str2[3];
int main(void)
{
int n; cin>>n;
map<string,int> mp;
mp["B"]=0,mp["C"]=1,mp["J"]=2;//布 石头,剪刀 注意这里是按字典序排的,后面输出的时候十分的方便
while(n--)
{
string a,b; cin>>a>>b;
if(mp[a]==0&&mp[b]==1) s1++,ss3++,str1[mp[a]]++;//甲胜
if(mp[a]==1&&mp[b]==2) s1++,ss3++,str1[mp[a]]++;
if(mp[a]==2&&mp[b]==0) s1++,ss3++,str1[mp[a]]++;
if(mp[b]==0&&mp[a]==1) ss1++,s3++,str2[mp[b]]++;//乙胜
if(mp[b]==1&&mp[a]==2) ss1++,s3++,str2[mp[b]]++;
if(mp[b]==2&&mp[a]==0) ss1++,s3++,str2[mp[b]]++;
if(mp[a]==mp[b]) s2++,ss2++;//平局
}
cout<<s1<<" "<<s2<<" "<<s3<<endl;
cout<<ss1<<" "<<ss2<<" "<<ss3<<endl;
if(str1[0]>=str1[1]&&str1[0]>=str1[2]) cout<<"B ";
else if(str1[0]<=str1[1]&&str1[1]>=str1[2]) cout<<"C ";
else cout<<"J ";
if(str2[0]>=str2[1]&&str2[0]>=str2[2]) cout<<"B";
else if(str2[0]<=str2[1]&&str2[1]>=str2[2]) cout<<"C";
else cout<<"J";
return 0;
}
以上是关于PAT乙级 1018 锤子剪刀布 (20 分)的主要内容,如果未能解决你的问题,请参考以下文章