2015年3月6日

【HDOJ】2780 Su-Su-Sudoku

摘要: 模拟+DFS。 1 /* 2780 */ 2 #include 3 #include 4 #include 5 6 char map[10][10]; 7 int visit[10][10][10]; 8 int fn; 9 int fx[6], fy[6]; 10 11... 阅读全文

posted @ 2015-03-06 11:33 Bombe 阅读(101) 评论(0) 推荐(0) 编辑

【HDOJ】2782 The Worm Turns

摘要: DFS。 1 /* 2782 */ 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 9 #define MAXN 650 10 11 int n, m; 1... 阅读全文

posted @ 2015-03-06 10:26 Bombe 阅读(136) 评论(0) 推荐(0) 编辑

导航