Anton likes to play chess. Also, he likes to do programming. That is why he decided to write the program that plays chess. However, he finds the game on 8 to 8 board to too simple, he uses an infinite one instead.

The first task he faced is to check whether the king is in check. Anton doesn't know how to implement this so he asks you to help.

Consider that an infinite chess board contains one white king and the number of black pieces. There are only rooks, bishops and queens, as the other pieces are not supported yet. The white king is said to be in check if at least one black piece can reach the cell with the king in one move.

Help Anton and write the program that for the given position determines whether the white king is in check.

Remainder, on how do chess pieces move:

  • Bishop moves any number of cells diagonally, but it can't "leap" over the occupied cells.
  • Rook moves any number of cells horizontally or vertically, but it also can't "leap" over the occupied cells.
  • Queen is able to move any number of cells horizontally, vertically or diagonally, but it also can't "leap".
Input

The first line of the input contains a single integer n (1 ≤ n ≤ 500 000) — the number of black pieces.

The second line contains two integers x0 and y0 ( - 109 ≤ x0, y0 ≤ 109) — coordinates of the white king.

Then follow n lines, each of them contains a character and two integers xi and yi ( - 109 ≤ xi, yi ≤ 109) — type of the i-th piece and its position. Character 'B' stands for the bishop, 'R' for the rook and 'Q' for the queen. It's guaranteed that no two pieces occupy the same position.

Output

The only line of the output should contains "YES" (without quotes) if the white king is in check and "NO" (without quotes) otherwise.

题意:就是给你一个很大的棋盘,给你一个白棋的位置还有n个黑棋的位置,问你黑棋能否一步就吃掉白棋

给你如下规则

1.‘B'只能对角线移动,而且不能越过其他黑棋。

2.’R'只能上下左右移动,而且不能越过其他黑棋。

3.‘Q’既能对角线移动又能左右移动,但是不能越过其他黑棋。

其实也就是个模拟题,但也有一些技巧,只要考虑白棋的正上方,正下方,正左方,正右方距离白棋最小的是否为‘R'or’Q'。

斜右上角,斜右下角,斜左下角,斜左上角距离白棋最小的是否为‘B'or’Q'。即可。还有就是要注意一下小细节。

#include <iostream>
#include <cstring>
#include <string>
#include <cstdio>
#include <cmath>
using namespace std;
typedef long long ll;
const int M = 5e5 + 10;
struct TnT {
char cp[2];
int x , y;
}s[M];
int main()
{
int t;
scanf("%d" , &t);
int x0 , y0;
scanf("%d%d" , &x0 , &y0);
int flag = 0;
for(int i = 0 ; i < t ; i++) {
scanf("%s %d %d" , s[i].cp , &s[i].x , &s[i].y);
if(s[i].x == x0 && s[i].y == y0)
flag = 1;
//cout << s[i].cp << ' ' << s[i].x << ' ' << s[i].y << endl;
}
for(int i = 0 ; i < 8 ; i++) {
int temp = 0;
int MIN = 2e9 + 10;
if(i == 0) {
for(int j = 0 ; j < t ; j++) {
if(s[j].x == x0 && s[j].y > y0) {
int gg = abs(s[j].y - y0);
if(MIN > gg) {
temp = j;
MIN = gg;
}
}
}
if((MIN != 2e9 + 10) && (s[temp].cp[0] == 'R' || s[temp].cp[0] == 'Q')) {
flag = 1;
}
if(flag == 1)
break;
else
continue;
}
if(i == 1) {
for(int j = 0 ; j < t ; j++) {
if(s[j].x == x0 && s[j].y < y0) {
int gg = abs(s[j].y - y0);
if(MIN > gg) {
temp = j;
MIN = gg;
}
}
}
if((MIN != 2e9 + 10) && (s[temp].cp[0] == 'R' || s[temp].cp[0] == 'Q')) {
flag = 1;
}
if(flag == 1)
break;
else
continue;
}
if(i == 2) {
for(int j = 0 ; j < t ; j++) {
if(s[j].y == y0 && s[j].x > x0) {
int gg = abs(s[j].x - x0);
if(MIN > gg) {
temp = j;
MIN = gg;
}
}
}
if((MIN != 2e9 + 10) && (s[temp].cp[0] == 'R' || s[temp].cp[0] == 'Q')) {
flag = 1;
}
if(flag == 1)
break;
else
continue;
}
if(i == 3) {
for(int j = 0 ; j < t ; j++) {
if(s[j].y == y0 && s[j].x < x0) {
int gg = abs(s[j].x - x0);
if(MIN > gg) {
temp = j;
MIN = gg;
}
}
}
if((MIN != 2e9 + 10) && (s[temp].cp[0] == 'R' || s[temp].cp[0] == 'Q')) {
flag = 1;
}
if(flag == 1)
break;
else
continue;
}
ll MIN2 = 9e18;
if(i == 4) {
for(int j = 0 ; j < t ; j++) {
if((s[j].y - y0) == -1 * (s[j].x - x0) && s[j].y > y0 && s[j].x < x0) {
int x1 = abs(s[j].x - x0);
int y1 = abs(s[j].y - y0);
ll gg = (ll)x1 * x1 + (ll)y1 * y1;
if(MIN2 > gg) {
temp = j;
MIN2 = gg;
} }
}
if((MIN2 != 9e18) && (s[temp].cp[0] == 'B' || s[temp].cp[0] == 'Q')) {
flag = 1;
}
if(flag == 1)
break;
else
continue;
}
if(i == 5) {
for(int j = 0 ; j < t ; j++) {
if((s[j].y - y0) == -1 * (s[j].x - x0) && s[j].y < y0 && s[j].x > x0) {
int x1 = abs(s[j].x - x0);
int y1 = abs(s[j].y - y0);
ll gg = (ll)x1 * x1 + (ll)y1 * y1;
if(MIN2 > gg) {
temp = j;
MIN2 = gg;
} }
}
if((MIN2 != 9e18) && (s[temp].cp[0] == 'B' || s[temp].cp[0] == 'Q')) {
flag = 1;
}
if(flag == 1)
break;
else
continue;
}
if(i == 6) {
for(int j = 0 ; j < t ; j++) {
if((s[j].y - y0) == (s[j].x - x0) && s[j].y < y0 && s[j].x < x0) {
int x1 = abs(s[j].x - x0);
int y1 = abs(s[j].y - y0);
ll gg = (ll)x1 * x1 + (ll)y1 * y1;
if(MIN2 > gg) {
temp = j;
MIN2 = gg;
} }
}
if((MIN2 != 9e18) && (s[temp].cp[0] == 'B' || s[temp].cp[0] == 'Q')) {
flag = 1;
}
if(flag == 1)
break;
else
continue;
}
if(i == 7) {
for(int j = 0 ; j < t ; j++) {
if((s[j].y - y0) == (s[j].x - x0) && s[j].y > y0 && s[j].x > x0) {
int x1 = abs(s[j].x - x0);
int y1 = abs(s[j].y - y0);
ll gg = (ll)x1 * x1 + (ll)y1 * y1;
if(MIN2 > gg) {
temp = j;
MIN2 = gg;
} }
}
if((MIN2 != 9e18) && (s[temp].cp[0] == 'B' || s[temp].cp[0] == 'Q')) {
flag = 1;
}
if(flag == 1)
break;
else
continue;
}
if(flag == 1)
break;
}
if(flag == 0)
printf("NO\n");
else
printf("YES\n");
return 0;
}

Codeforces 734D. Anton and Chess(模拟)的更多相关文章

  1. Codeforces Round #379 (Div. 2) D. Anton and Chess 模拟

    题目链接: http://codeforces.com/contest/734/problem/D D. Anton and Chess time limit per test4 secondsmem ...

  2. D. Anton and Chess 模拟题 + 读题

    http://codeforces.com/contest/734/problem/D 一开始的时候看不懂题目,以为象是中国象棋那样走,然后看不懂样例. 原来是走对角线的,长知识了. 所以我们就知道, ...

  3. Codeforces Round #379 (Div. 2) D. Anton and Chess 水题

    D. Anton and Chess 题目连接: http://codeforces.com/contest/734/problem/D Description Anton likes to play ...

  4. Codeforces Round #379 (Div. 2) D. Anton and Chess —— 基础题

    题目链接:http://codeforces.com/contest/734/problem/D D. Anton and Chess time limit per test 4 seconds me ...

  5. Anton and Chess

    Anton and Chess time limit per test 4 seconds memory limit per test 256 megabytes input standard inp ...

  6. CodeForces.158A Next Round (水模拟)

    CodeForces.158A Next Round (水模拟) 题意分析 校赛水题的英文版,坑点就是要求为正数. 代码总览 #include <iostream> #include &l ...

  7. 【29.89%】【codeforces 734D】Anton and Chess

    time limit per test4 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  8. Anton and Chess(模拟+思维)

    http://codeforces.com/group/1EzrFFyOc0/contest/734/problem/D 题意:就是给你一个很大的棋盘,给你一个白棋的位置还有n个黑棋的位置,问你黑棋能 ...

  9. Codeforces 747C:Servers(模拟)

    http://codeforces.com/problemset/problem/747/C 题意:有n台机器,q个操作.每次操作从ti时间开始,需要ki台机器,花费di的时间.每次选择机器从小到大开 ...

随机推荐

  1. Codeforces Round #192 (Div. 2) (330A) A. Cakeminator

    题意: 如果某一行没有草莓,就可以吃掉这一行,某一列没有也可以吃点这一列,求最多会被吃掉多少块蛋糕. //cf 192 div2 #include <stdio.h> #include & ...

  2. 【pycharm】pycharm远程连接服务器的Python解释器,远程编写代码!!!

    今天讲讲如何用pycharm连接远程服务器,使用远程服务器的Python解释器,比如说是你公司的服务器,在家里就可以编写或修改项目的代码! 第一步,先找到服务器上的ip地址 Linux查看IP命令:i ...

  3. sqoop 密码别名模式 --password-alias

    sqoop要使用别名模式隐藏密码 1.首先使用命令创建别名 hadoop credential create xiaopengfei  -provider jceks://hdfs/user/pass ...

  4. centos yum 安装 mariadb

    1. 在 /etc/yum.repos.d/ 下建立 MariaDB.repo,输入内容 [mariadb] name=MariaDB baseurl=http://yum.mariadb.org/1 ...

  5. 算法实战-OJ之旅

    算法虽然不是特别简单,但没有你想象中的那么难. Sort Array By Parity easy AC-17ms. 按照<算法导论>排序一章的一些概念,第二种可以称为是原址的(in-pl ...

  6. Java +支付宝 +接入+最全+最佳-实战-demo

    一.支付宝配置: 1.需要在支付宝商户平台购买支付的产品并开通支付. 2.购买支付产品登录支付宝:https://auth.alipay.com/login/index.htm 3.登录之后首页点击查 ...

  7. 程序员修神之路--用NOSql给高并发系统加速(送书)

    随着互联网大潮的到来,越来越多网站,应用系统需要海量数据的支撑,高并发.低延迟.高可用.高扩展等要求在传统的关系型数据库中已经得不到满足,或者说关系型数据库应对这些需求已经显得力不从心了.关系型数据库 ...

  8. 通过Blazor使用C#开发SPA单页面应用程序(2)

    今天我们尝试创建一个默认的Blazor应用. 1.安装 .Net Core 3.0需要Visual Studio 2019 的支持. 安装.Net Core 3.0 预览版 SDK版本,注意预览版对应 ...

  9. 99% 的人都不知道的 Kubernetes 网络疑难杂症排查方法

    原文链接:Kubernetes 网络疑难杂症排查分享 大家好,我是 roc,来自腾讯云容器服务 (TKE) 团队,经常帮助用户解决各种 K8S 的疑难杂症,积累了比较丰富的经验,本文分享几个比较复杂的 ...

  10. 帝国CMS(EmpireCMS) v7.5 代码注入分析(CVE-2018-19462)

    帝国CMS(EmpireCMS) v7.5 代码注入分析(CVE-2018-19462) 一.漏洞描述 EmpireCMS7.5及之前版本中的admindbDoSql.php文件存在代码注入漏洞.该漏 ...