洛谷1214 等差数列

此题可以事先用数组将所有的双平方数都求出来,在暴力枚举a,b,看是否在这个数组里。

#include
#include
#include
using namespace std;
struct node
{
	int a,b;
}ans[10100];
int n,m,t,k;
int st[300],cnt[22000];
bool b[130000];
int f(int x,int y)
{
	for(int i=0;i

你可能感兴趣的:(洛谷1214 等差数列)