2019年4月8日

Fire! UVA - 11624

摘要: #include using namespace std; struct Node{ int r, c, dis; Node(int r, int c):r(r), c(c){} }; const int maxn = 1000 + 3; int R, C; char maze[maxn][maxn]; int fire[maxn][maxn]; int vis[maxn][... 阅读全文

posted @ 2019-04-08 20:44 nbsanshi 阅读(73) 评论(0) 推荐(0) 编辑

导航