439 - Knight Moves (UVA)

题目链接如下:

Online Judge

UVA439 骑士的移动 - 锦依卫议事堂 - 洛谷博客 这里有好几个特别厉害的解法...先存着慢慢看。

我的代码如下:

#include <iostream>
#include <deque>
#include <string>
// #define debug

struct node{
    std::string loc;
    int step;
};
std::string s1, s2;
int dx[] = {2, 1, -1, -2, -2, -1, 1, 2};
int dy[] = {1, 2, 2, 1, -1, -2, -2, -1};

int calStep(){
    if (s1 == s2){
        return 0;
    }
    node temp;
    temp.loc = s1;
    temp.step = 0;
    std::deque<node> dq;
    dq.push_back(temp);
    while (!dq.empty()){
        node curr = dq.front();
        dq.pop_front();
        for (int u = 0; u < 8; ++u){
            node tmp;
            tmp.loc.push_back(curr.loc[0] + dx[u]);
            tmp.loc.push_back(curr.loc[1] + dy[u]);
            if (tmp.loc == s2){
                return curr.step + 1;
            }
            if (tmp.loc[0] >= 'a' && tmp.loc[0] <= 'h' && tmp.loc[1] >= '1' && tmp.loc[1] <= '8'){
                tmp.step = curr.step + 1;
                dq.push_back(tmp);
            }
        }
    }
}

int main(){
    #ifdef debug
    freopen("0.txt", "r", stdin);
    freopen("1.txt", "w", stdout);
    #endif
    while (std::cin >> s1 >> s2){
        printf("To get from %s to %s takes %d knight moves.\n", s1.c_str(), s2.c_str(), calStep());
    }
    #ifdef debug
    fclose(stdin);
    fclose(stdout);
    #endif
    return 0;
}

相关推荐

  1. 439 - Knight Moves (UVA)

    2024-01-12 12:36:05       46 阅读
  2. Knight Moves(UVA 439

    2024-01-12 12:36:05       21 阅读
  3. AFM 433

    2024-01-12 12:36:05       14 阅读
  4. trino-435:dynamic catalog

    2024-01-12 12:36:05       38 阅读
  5. leetcode 437 路径总和

    2024-01-12 12:36:05       38 阅读
  6. UVA489 - Hangman Judge

    2024-01-12 12:36:05       24 阅读
  7. 435. 无重叠区间

    2024-01-12 12:36:05       22 阅读
  8. misc<span style='color:red;'>49</span>

    misc49

    2024-01-12 12:36:05      24 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-01-12 12:36:05       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-01-12 12:36:05       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-01-12 12:36:05       19 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-01-12 12:36:05       20 阅读

热门阅读

  1. Amessage的clear会清除对象并释放内存空间

    2024-01-12 12:36:05       30 阅读
  2. 数据结构---双向链表

    2024-01-12 12:36:05       41 阅读
  3. 灰色神经网络的回归分析

    2024-01-12 12:36:05       35 阅读
  4. MongoDB分片集群搭建

    2024-01-12 12:36:05       32 阅读
  5. Qt模型视图框架:QDataWidgetMapper 数据映射

    2024-01-12 12:36:05       40 阅读
  6. 算法训练营Day37

    2024-01-12 12:36:05       30 阅读