seerc 2014 D - Frame (傻逼题)
思路:注意xy-(x-2)*(y-2)=2x+2y-4,一定被2整除。因此siz为2的也是合法的。这个比较容易忘掉。
其他的判定条件都很好想。具体见代码;
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#define fst first
#define sec second
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define ms(a,x) memset(a,x,sizeof(a))
typedef long long LL;
#define pi pair < int ,int >
#define MP make_pair
using namespace std;
const double eps = 1E-8;
const int dx4[4]={1,0,0,-1};
const int dy4[4]={0,-1,1,0};
const int inf = 0x3f3f3f3f;
int X,Y;
bool ok( int a)
{
if (a==2) return true;
if (X%a==0&&(Y-2)%a==0) return true;
if (Y%a==0&&(X-2)%a==0) return true;
if (X%a==1&&Y%a==1) return true;
return false;
}
int main()
{
// freopen("in.txt","r",stdin);
while (~scanf("%d%d",&X,&Y))
{
int n;
scanf("%d",&n);
while (n--)
{
int x;
scanf("%d",&x);
// cout<<"x:"<<x<<endl;
if (ok(x)) puts("YES");
else puts("NO");
}
}
return 0;
}