摘要:
简单题View Code #include <iostream>#include <cstdlib>#include <cstring>#include <cstdio>using namespace std;#define maxn 105bool map[maxn][maxn];int test(int x, int y, int l){ int ans = 0; for (int i = x; i < x + l; i++) for (int j = y; j < y + l; j++) if (map[i][j]) ans++ 阅读全文
posted @ 2011-04-08 18:13
undefined2024
阅读(159)
评论(0)
推荐(0)