比赛 “Asm.Def战记之拉格朗日点”杯 评测结果 WWWWWWWWWW
题目名称 Asm.Def找燃料 最终得分 0
用户昵称 lin haozhwng 运行时间 0.011 s
代码语言 C++ 内存使用 0.28 MiB
提交时间 2015-11-04 10:39:52
显示代码纯文本
#include <iostream>
#include <cstring>
#include <cstdio>
#define maxn 100+5
using namespace std;
int  main()
{
	freopen("asm_fuel.in","r",stdin);
	freopen("asm_fuel.out","w",stdout);
	int t,n;
	cin>>n; 
	int count=0,maxc;   
    int x[maxn],y[maxn];
	float b,k;
	for(int i=1;i<=n;i++)
	  cin>>x[i]>>y[i];
	{t=1;	
	 k=( x[t]-x[t+=1] )/( y[t]-y[t+=1] );
	 b=y[t]-k*x[t];
    }
    for(int i=t;i<=n;i++)
    {if( x[t+i]*k + b == y[t+i] );
     count++;
     maxc=count;
    }
	cout<<maxc;	
	return 0;
}