Codeforces 734D. Anton and Chess(模拟)
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".
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.
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(模拟)的更多相关文章
- 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 ...
- D. Anton and Chess 模拟题 + 读题
http://codeforces.com/contest/734/problem/D 一开始的时候看不懂题目,以为象是中国象棋那样走,然后看不懂样例. 原来是走对角线的,长知识了. 所以我们就知道, ...
- 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 ...
- 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 ...
- Anton and Chess
Anton and Chess time limit per test 4 seconds memory limit per test 256 megabytes input standard inp ...
- CodeForces.158A Next Round (水模拟)
CodeForces.158A Next Round (水模拟) 题意分析 校赛水题的英文版,坑点就是要求为正数. 代码总览 #include <iostream> #include &l ...
- 【29.89%】【codeforces 734D】Anton and Chess
time limit per test4 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- Anton and Chess(模拟+思维)
http://codeforces.com/group/1EzrFFyOc0/contest/734/problem/D 题意:就是给你一个很大的棋盘,给你一个白棋的位置还有n个黑棋的位置,问你黑棋能 ...
- Codeforces 747C:Servers(模拟)
http://codeforces.com/problemset/problem/747/C 题意:有n台机器,q个操作.每次操作从ti时间开始,需要ki台机器,花费di的时间.每次选择机器从小到大开 ...
随机推荐
- NYOJ 53 最少步数
题 目 http://acm.nyist.edu.cn/JudgeOnline/problem.php?pid=58 思路借鉴 DFS-Deep First Search-深度优先 ...
- 极力推荐一个简单好用的C++JSON库
极力推荐一个简单好用的C++JSON库CJsonObject,让使用json如使用C++原生的结构体那般方便,随心所欲.CJsonObject是个优秀的C++JSON库,也许会是你见过的最为简单易 ...
- Oracle SQL常用内置系统函数总结
Oracle数据库 内置系统函数主要分为以下类别:数学函数.字符串函数.日期函数.转换函数.聚合函数.分析聚合函数 一.数学函数 ------------返回数字 abs(n):返回数字 ...
- lvs+keepalived 高可用及负载均衡
一.环境准备 VIP:10.18.43.30 dr1:10.18.43.10 dr2:10.18.43.20 web1:10.18.43.13 web2:10.18.43.14 结构图 (一).预处理 ...
- Adapter适配器模式--图解设计模式
第二章: Adapter 模式 Adapter模式分为两种: 1.类适配器模式 2.委托适配器 我看的是<图解设计模式>这本书,这小鬼子说的话真难懂,只能好好看代码理解. 先说适配器模式要 ...
- Java 8原生API也可以开发响应式代码?
前段时间工作上比较忙,这篇文章一直没来得及写,本文是阅读<Java8实战>的时候,了解到Java 8里已经提供了一个异步非阻塞的接口(CompletableFuture),可以实现简单的响 ...
- 利用反射,更改string对象的value数组以达到改变string值。
package test; import java.lang.reflect.Field; import lombok.Value; public class Test1{ public static ...
- 转载 | Sublime Text3 安装以及初次配置
本文引自:http://blog.csdn.net/u011272513/article/details/52088800 工具:官网下载:Sublime Text3 安装:直接运行安装.http:/ ...
- 自定义FutureTask实现
FutureTask FutureTask是Future的实现,用来异步任务的获取结果,可以启动和取消异步任务,查询异步任务是否计算结束以及获取最终的异步任务的结果.通过get()方法来获取异步任务的 ...
- Opengl_入门学习分享和记录_02_渲染管线(一)顶点着色器&片段着色器
写在前面的废话:今天俺又来了哈哈,真的好棒棒! 今天的内容:之前我们大概描述了,我们自己定义的顶点坐标是如何被加载到GPU之中,并且介绍了顶点缓冲对象VBO用于管理这一块内存.今天开始详细分析它的具体 ...