比赛 20160707 评测结果 AAWAAWWWWW
题目名称 苳岑学姐の超电磁炮 最终得分 40
用户昵称 WHZ0325 运行时间 0.082 s
代码语言 C++ 内存使用 0.28 MiB
提交时间 2016-07-07 16:02:56
显示代码纯文本
#include <fstream>
#include <vector>
using namespace std;
ifstream fin("dcball.in");
ofstream fout("dcball.out");
int n,l;
int loc,dir;
vector<int> locs;
vector<short int> dirs;
int questions;
int que;
int main() {
	fin>>n>>l;
	for(int i=0;i<n;i++) {
		fin>>loc>>dir;
		locs.push_back(loc);
		if(dir==1) {
			dirs.push_back(-1);
		}
		else {
			dirs.push_back(1);
		}
	}
	fin>>questions;
	for(int i=0;i<questions;i++) {
		fin>>que;
		for(int i=0;i<n;i++) {
			int now=locs[i]+que*dirs[i];
			if(1<=now&&now<=l) {
				fout<<now<<" ";
			}
			else {
				fout<<"fire in the hole"<<" ";
			}
		}
		fout<<endl;
	}
	fin.close();
	fout.close();
	return 0;
}