CF676DTheseus and labyrinth(BFS,最短路)

Posted myx12345

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF676DTheseus and labyrinth(BFS,最短路)相关的知识,希望对你有一定的参考价值。

题意:给定一张N*M的地图,每一格都是一个房间,房间之间有门。每个房间可能有四个门,例如>代表右边只有一个门在右边即只能向右走,L代表左边没有门只能除了左其他都可以走等等。现在给出起点和终点,每次你可以把全部房间旋转90度或者移动到相邻的房间,但前提是两个房间之间都有有门,现在要你求起点出发到终点的最少时间。

  • «+» means this block has 4 doors (one door to each neighbouring block);
  • «-» means this block has 2 doors — to the left and to the right neighbours;
  • «|» means this block has 2 doors — to the top and to the bottom neighbours;
  • «^» means this block has 1 door — to the top neighbour;
  • «>» means this block has 1 door — to the right neighbour;
  • «<» means this block has 1 door — to the left neighbour;
  • «v» means this block has 1 door — to the bottom neighbour;
  • «L» means this block has 3 doors — to all neighbours except left one;
  • «R» means this block has 3 doors — to all neighbours except right one;
  • «U» means this block has 3 doors — to all neighbours except top one;
  • «D» means this block has 3 doors — to all neighbours except bottom one;
  • «*» means this block is a wall and has no doors.

挖坑待填

以上是关于CF676DTheseus and labyrinth(BFS,最短路)的主要内容,如果未能解决你的问题,请参考以下文章

CF676E:The Last Fight Between Human and AI

D - Pyramid of Glasses cf676B

[CF-676B]PYRAMID OF GLASSES

尺取法 C - Vasya and String CodeForces - 676C

CodeForces 676D Theseus and labyrinth

codeforces -676D(Theseus and labyrinth)