记录编号 570791 评测结果 AAAAAAAAAA
题目名称 [NOI Online 2020 3rd PJ]紧急救助(民间数据) 最终得分 100
用户昵称 Gravatar什么都想学什么都学了一点的晓无痕 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2022-04-18 21:55:49 内存使用 0.00 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n;
struct help
{
    string name;
    string hp;
    int cntt=0;
    bool maxt=true;
};
int main()
{
    freopen("noi_online2020_save.in","r",stdin);
    freopen("noi_online2020_save.out","w",stdout);
    cin>>n;
    help men[120];
    for(int i=1;i<=n;++i)
    {
        cin>>men[i].name>>men[i].hp;
        int x=men[i].hp.size();
        for(int j=0;j<=x;++j)
        {
            if(men[i].hp[j]=='s'&&men[i].hp[j+1]=='o'&&men[i].hp[j+2]=='s')
            {
                men[i].cntt=men[i].cntt+1;
            }
        }
    }
    for(int i=1;i<=n;++i)
    {
        for(int j=1;j<=n;++j)
        {
            if(men[i].cntt<men[j].cntt)
            {
                men[i].maxt=false;
            }
        }
    }
    for(int i=1;i<=n;++i)
    {
        if(men[i].maxt==true)
        cout<<men[i].name<<" ";
    }
    cout<<endl;
    for(int i=1;i<=n;++i)
    {
        if(men[i].maxt==true)
        {
            cout<<men[i].cntt;
            break;
        }
    }
    return 0;
}