比赛 20131130 评测结果 AAWWWWWWWW
题目名称 提高速度 最终得分 20
用户昵称 明天 运行时间 0.021 s
代码语言 C++ 内存使用 0.40 MiB
提交时间 2015-09-19 21:16:30
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;

const int maxn=10000+1;
int f1,m,n;
int af[maxn],am[maxn];
bool f[maxn],flag;
int fi,mi;
int main()
{
	freopen("sboost.in","r",stdin);
	freopen("sboost.out","w",stdout);
	
	cin>>f1>>m>>n;
	double t=(double)f1/m;
	for (int i=1; i<=n; i++)
	{
		cin>>fi>>mi;
		if ((f1+fi)*1.0/(m+mi)>t)
		{
			cout<<i<<endl;
			flag=true;	
		}
	}
	if (!flag)
		cout<<"NONE"<<endl;
		
	return 0;
}