学校有点离谱,一周十二道,三道都是新题。
马上考试周还这么折腾
前面题都能搜到学长代码,搜搜都能应付
原来每次ddl都是拿祖传代码应付的,这次补充下
#include<iostream>
#include<queue>
using namespace std;
#define _for(i, a, b) for(int i = (a); i < (b); i ++ )
#define _rep(i, a, b) for(int i = (a); i <= (b); i ++ )
struct state
{
int x, y, hp, t;
state() {}
state(int a, int b, int c, int d) : x(a), y(b), hp(c), t(d) {}
}in, out;
const int N = 210;
int g[N][N];
bool st[N][N][15];
int m, n, t;
int bfs()
{
int dx[] = {-1, 0, 1, 0}, dy[] = {0, 1, 0, -1};
queue<state> q;
q.push(in);
while(q.size())
{
state t = q.front();
q.pop();
if(t.x == out.x && t.y == out.y)
return t.t;
if(st[t.x][t.y][t.hp]) continue;
st[t.x][t.y][t.hp] = 1;
_for(i, 0, 4)
{
int x &#