『算法-ACM竞赛-CodeForces』1058B B. Vasya and Cornfiel

『算法-ACM 竞赛-CodeForces』1058B B. Vasya and Cornfiel

在这里插入图片描述
在这里插入图片描述
这题,我真的不知道题解是啥,自己看代码吧。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include<iostream>
using namespace std;
int main()
{
int n, d,m,i,x,y;
cin>>n>>d>>m;
for(i=1;i<=m;i++)
{
cin>>x>>y;
if(x+y-d>=0&&x+y+d-2*n<=0&&x-y-d<=0&&x-y+d>=0)
cout<<"YES"<<endl;
else cout<<"NO"<<endl;
}
}

『算法-ACM竞赛-CodeForces』1058B B. Vasya and Cornfiel
https://chiamzhang.github.io/2024/06/29/『算法-ACM竞赛-CodeForces』1058B B. Vasya and Cornfield/
Author
Chiam
Posted on
June 29, 2024
Licensed under