比赛 20130725暑期B班1测 评测结果 RRRRRRRRRR
题目名称 单词缩写 最终得分 0
用户昵称 ok 运行时间 0.003 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2012-07-18 10:14:33
显示代码纯文本
#include <fstream>
using namespace std;
int ce(int x,int y)
{
	int t;
	t=0;
	if((x-30)*(x-30)+(y-30)*(y-30)<400) t=1;
	if((x-100)*(x-100)+(y-30)*(y-30)<100) t=2;
	if((x-170)*(x-170)+(y-30)*(y-30)<25) t=3;
	return t;
}
int main()
{
	int n,i,j,m[61]={0},a[61],b[61][201],c[61][201];
	ifstream input("table2.in");
    ofstream output("table2.out");
	input>>n;
	for(i=1;i<=n;i++)
	{
		input>>a[i];
		for(j=1;j<=a[i];j++)
		{
			input>>b[i][j]>>c[i][j];
			m[i]+=ce(b[i][j],c[i][j]);
		}
	}
	for(i=1;i<=n;i++)
	{
		output<<m[i]<<endl;
	}
	input.close();
    output.close();
    return 0;
}