• TopCoder SRM 628 DIV 2


    250-point problem


    Problem Statement
        
    Janusz is learning how to play chess. He is using the standard chessboard with 8 rows and 8 columns. Both the rows and the columns are numbered 0 through 7. Thus, we can describe each cell using its two coordinates: (row, column).
    Janusz recently learned about one of the chess pieces: the bishop. The bishop is a piece that moves diagonally by an arbitrary number of cells. Formally, if a bishop is currently on the cell (r,c) of an empty chessboard, the set of all cells reachable in a single move contains the following cells:
    All cells of the form (r+k,c+k), where k is a positive integer.
    All cells of the form (r+k,c-k), where k is a positive integer.
    All cells of the form (r-k,c+k), where k is a positive integer.
    All cells of the form (r-k,c-k), where k is a positive integer.
    (Of course, the bishop's destination must always be a valid cell on the chessboard.)
    Janusz took an empty chessboard and he placed a single bishop onto the cell (r1,c1). He now wants to move it to the cell (r2,c2) using as few moves as possible.
    You are given the ints r1, c1, r2, and c2. Compute and return the smallest number of moves a bishop needs to get from (r1,c1) to (r2,c2). If it is impossible for a bishop to reach the target cell, return -1 instead.
    Definition
        
    Class:
    BishopMove
    Method:
    howManyMoves
    Parameters:
    int, int, int, int
    Returns:
    int
    Method signature:
    int howManyMoves(int r1, int c1, int r2, int c2)
    (be sure your method is public)
    Limits
        
    Time limit (s):
    2.000
    Memory limit (MB):
    256
    Constraints
    -
    r1,c1,r2,c2 will be between 0 and 7, inclusive.
    Examples
    0)

        
    4
    6
    7
    3
    Returns: 1
    The bishop can go from (4,6) to (7,3) in a single move.
    1)

        
    2
    5
    2
    5
    Returns: 0
    The bishop is already where it should be, no moves are necessary.
    2)

        
    1
    3
    5
    5
    Returns: 2
    In the first move Janusz can move the bishop to the cell (4,6). Please note that this is the largest possible return value: whenever there is a solution, there is a solution that uses at most two moves.
    3)

        
    4
    6
    7
    4
    Returns: -1
    If the bishop starts at (4,6), it can never reach (7,4).

    This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2003, TopCoder, Inc. All rights reserved.

    题意:国际象棋中的象从棋盘位置(r1,c1)到(r2,c2)最少需要几步?不能达到返回-1.

    解题:先特判一下返回0和1的情况,然后看起点沿四个方向的轨迹是否与终点沿四个方向的轨迹有交点,如果是返回2,否则返回-1.

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 typedef long long ll;
     4 typedef pair<int,int> P;
     5 bool M[10][10];
     6 const int Dr[] = {-1,-1,+1,+1};
     7 const int Dc[] = {-1,+1,+1,-1};
     8 class BishopMove{
     9 public:
    10 inline bool valid(int x)
    11 {
    12     return 0 <= x && x <= 7;
    13 }
    14 int walk(int r,int c)
    15 {
    16     int k,d;
    17     for(k=0;k<4;++k)
    18     {
    19         d = 1;
    20         while(valid(r + d * Dr[k]) && valid(c + d * Dc[k]))
    21         {
    22             if(!M[r + d * Dr[k]][c + d * Dc[k]])M[r + d * Dr[k]][c + d * Dc[k]] = true;
    23             else return 2;
    24             d++;
    25         }
    26     }
    27     return -1;
    28 }
    29     int howManyMoves(int r1, int c1, int r2, int c2){
    30         if(r1 == r2 && c1 == c2)return 0;
    31         if(abs(r1 - r2) == abs(c1 - c2))return 1;
    32         memset(M,false,sizeof M);
    33         walk(r1,c1);
    34         return walk(r2,c2);
    35     }
    36 };
  • 相关阅读:
    JS的Document属性和方法小结
    机器学习笔记——最小二乘法
    c语言中printf()函数中的参数计算顺序
    机器学习笔记——拉格朗日乘子法和KKT条件
    Linux bash笔记
    java.util.ConcurrentModificationException的解决办法
    浅谈对java中传参问题的理解
    机器学习笔记——t分布知识点总结
    机器学习笔记——测试集和验证集的区别
    java中对HashMap遍历的方式
  • 原文地址:https://www.cnblogs.com/gangduo-shangjinlieren/p/3861473.html
Copyright © 2020-2023  润新知