比赛 |
20160707 |
评测结果 |
AAWWWWWWWW |
题目名称 |
苳岑学姐の超电磁炮 |
最终得分 |
20 |
用户昵称 |
iortheir |
运行时间 |
0.011 s |
代码语言 |
C++ |
内存使用 |
0.30 MiB |
提交时间 |
2016-07-07 16:29:53 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int n;//球的个数
int l;//管的长度
int m;//m个的询问
int t;
struct T
{
int x;//位置
int y;//方向
}A[2000];
int ans[2000]={0};
int main()
{
freopen("dcball.in","r",stdin);
freopen("dcball.out","w",stdout);
cin>>n>>l;
for(int i=0;i<n;++i)
{
cin>>A[i].x>>A[i].y;
}
cin>>m;
for(int i=0;i<m;++i)
{
cin>>t;
for(int j=0;j<n;++j)
{
if(A[j].y)
{
ans[j]=A[j].x-t;
}
else
{
ans[j]=A[j].x+t;
}
}
}
for(int k=0;k<n;++k)
{
if(ans[k]<0||ans[k]>l)
{
cout<<"fire in the hole"<<' ';
}
else
{
cout<<ans[k]<<' ';
}
}
return 0;
}