摘要: http://ac.jobdu.com/problem.php?id=1408 1 #include <stdio.h> 2 #include <string.h> 3 #include <stdio.h> 4 int mat[1001][1001]={0}; 5 int main() 6 { 7 int m,n; 8 9 int i,j;10 for(i=0;i<=1000;i++) mat[0][i]=1;11 for(i=0;i<=1000;i++) mat[i][0]=1;12 for(i=1;i<=1000;... 阅读全文
posted @ 2012-04-26 19:44 linyvxiang 阅读(230) 评论(0) 推荐(0) 编辑