记录编号 |
458211 |
评测结果 |
AAAAAAAAA |
题目名称 |
贪婪的送礼者 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.004 s |
提交时间 |
2017-10-10 16:50:00 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<cstdio>
#include<map>
#include<string>
#include<queue>
#include<iostream>
using namespace std;
int np;
string temp;
map<string,int> t;
map<string,int> res;
queue<string> test;
int main()
{
freopen("gift1.in","r",stdin);
freopen("gift1.out","w",stdout);
cin>>np;
for(int i=1;i<=np;i++)
{
cin>>temp;
test.push(temp);
}
for(int i=1;i<=np;i++)
{
cin>>temp;
int mon,peo;
cin>>mon>>peo;
t[temp]=mon;
if(peo&&mon%peo)t[temp]-=mon%peo;
for(int j=1;j<=peo;j++)
{
cin>>temp;
res[temp]+=mon/peo;
}
}
while(!test.empty())
{
temp=test.front();
cout<<temp<<' '<<res[temp]-t[temp]<<endl;
test.pop();
}
return 0;
}