hdoj 1010 Tempter of the Bone
摘要:
1 #include <stdio.h> 2 #include <iostream> 3 #include <math.h> 4 5 using namespace std; 6 7 int n, m, t, di, dj, success; 8 char maze[10][10]; 9 10 void dfs(int i, int j, int cnt)11 {12 int temp;13 if (i == di && j == dj && cnt == t)14 {15 success = 1;16 return;17 . 阅读全文
posted @ 2012-08-11 18:25 Xor<>OR 阅读(124) 评论(0) 推荐(0)
浙公网安备 33010602011771号