【HDOJ】2414 Chessboard Dance
摘要:
简单DFS。 1 /* 2414 */ 2 #include 3 #include 4 #include 5 6 const int n = 8; 7 char map[10][10]; 8 int x, y, d; 9 char dirs[5] = "^v"; 10 in... 阅读全文
posted @ 2015-03-09 10:25 Bombe 阅读(204) 评论(0) 推荐(0) 编辑