這題目其實是一道典型的bfs解迷宮問題,唯一的難度在於可以使用魔法,而且只能使用一次。因此我們需要多建立一張表存使用魔法後的情況。
**:
const z:array[1..4,1..2]of -1..1=((1,0),(-1,0),(0,1),(0,-1));//四個方向
var i,j,k:longint;
m,n:longint;
h,t:longint; //第二張表為0,原表為1
a:array[0..1001,0..1001,0..1]of boolean;
x,y,u,p:array[0..2000001]of longint;
d,r:longint;
ch:char;
begin
readln(m,n,d,r);
for i:=1 to m do
begin
for j:=1 to n do
begin
read(ch);
if ch='.' then
begin
a[i,j,0]:=true;
a[i,j,1]:=true;
endelse
begin
a[i,j,0]:=false;
a[i,j,1]:=false;
end;
end;
readln;
end;
p[1]:=1;
x[1]:=1;
y[1]:=1;
u[1]:=0;
h:=1;
t:=1;
repeat
if (x[t]=m) and (y[t]=n) then//到終點時,輸出
begin
write(u[t]);
exit;
end;
for i:=1 to 4 do//正常搜尋,模板
if a[x[t]+z[i,1],y[t]+z[i,2],p[t]] then
begin
a[x[t]+z[i,1],y[t]+z[i,2],p[t]]:=false;
inc(h);
p[h]:=p[t];//保留之前是否使用魔法
x[h]:=x[t]+z[i,1];
y[h]:=y[t]+z[i,2];
u[h]:=u[t]+1;
end;
if p[t]=1 then//之前沒有使用過魔法
begin
if (x[t]+d>0) and (y[t]+r>0) and (x[t]+d<=m) and (y[t]+r<=n) then//因為使用魔法可能會超過邊界,所以要特判一下
if a[x[t]+d,y[t]+r,0] then//處理方法與正常相同
begin
inc(h);
a[x[t]+d,y[t]+r,0]:=false;
x[h]:=x[t]+d;
y[h]:=y[t]+r;
u[h]:=u[t]+1;
p[h]:=0;//記錄為用過魔法
end;
end;
inc(t);
until t>h;
write(-1);//無解
end.
P3818 小A和uim之大逃離 II
傳送門 乙個很簡單的bfs,但注意f標記陣列要開三維,來標記這個地方是嗑藥到的還是沒嗑藥到的,因為可能不嗑藥就可以到這個地方,你磕了藥,然後無法到此地方,但是沒有藥無法在這個點移動,但你標記了,於是有藥的無法拓展的這個點,導致無解 還是自己理解一下好 include include include ...
P3818 小A和uim之大逃離 II bfs
題目背景 question 話說上回 還是參見 吧 小a和uim再次來到雨林中探險。突然一陣南風吹來,一片烏雲從南部天邊急湧過來,還伴著一道道閃電,一陣陣雷聲。剎那間,狂風大作,烏雲布滿了天空,緊接著豆大的雨點從天空中打落下來,只見前方出現了乙個牛頭馬面的怪物,低沉著聲音說 呵呵,既然你們來到這,兩...
P3818 小A和uim之大逃離 II
luogu 傳送門 bfs拓展嘛。不過這裡有一點特別之處,就是記錄狀態時要三維,f i j 0 1 代表到了 i j 這個點是否使用過向量。在bfs中往四面走,如果沒有使用過向量,就再拓展一下使用向量的。還是比較容易啦 include include include include include ...