HDU 1242 Rescue (DFS)
//题意自己看,不会度娘#include <stdio.h>#include <math.h>#include <string.h>char map[205][205];//地图int flag[205][205];//标记int n,m,ok,num;void DFS(int x,int y,int step){ if(flag[...