zoukankan      html  css  js  c++  java
  • Codeforces_734_D

    http://codeforces.com/problemset/problem/734/D

    保存最近的八个方向的点,判断即可。

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<cmath>
    using namespace std;
    
    int x,y,n;
    long long a[3][3];
    char c[3][3];
    int f(int x)
    {
        if(x < 0)   return 0;
        if(x == 0)  return 1;
        return 2;
    }
    
    int main()
    {
        memset(a,0x3f,sizeof(a));
        memset(c,0,sizeof(c));
        scanf("%d%d%d",&n,&x,&y);
        int s[2],xx,yy;
        while(n--)
        {
            scanf("%s%d%d",s,&xx,&yy);
            xx -= x;
            yy -= y;
            if(xx != 0 && yy != 0 && abs(xx) != abs(yy))    continue;
            if(a[f(xx)][f(yy)] > max(abs(xx),abs(yy)))
            {
                a[f(xx)][f(yy)] = max(abs(xx),abs(yy));
                c[f(xx)][f(yy)] = s[0];
            }
        }
        for(int i = 0;i < 3;i++)
        {
            for(int j = 0;j < 3;j++)
            {
                if(c[i][j] == 'Q')
                {
                    printf("YES
    ");
                    return 0;
                }
                if(c[i][j] == 'B' && (i+j)%2 == 0)
                {
                    printf("YES
    ");
                    return 0;
                }
                if(c[i][j] == 'R' &&(i+j)%2)
                {
                    printf("YES
    ");
                    return 0;
                }
            }
        }
        printf("NO
    ");
        return 0;
    }
  • 相关阅读:
    rgbdslam 源代码的实现
    键值对排序并MD5加密
    字符编码
    排序算法
    Bridge Pattern (桥接模式)
    Visitor Pattern 和 doubledispatch
    栈、队列、链表
    如何使用visio
    架构师论文
    英语写作句子
  • 原文地址:https://www.cnblogs.com/zhurb/p/6094915.html
Copyright © 2011-2022 走看看