程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> hdu 5254(暴力)

hdu 5254(暴力)

編輯:關於C++

題解:暴力所有點,直到不存在可以0變1的點。

#include 
#include 
const int N = 505;
int n, m, k, g[N][N], temp[N][N], vis[N][N];

bool judge(int x, int y) {
    if (x - 1 >= 0 && y - 1 >= 0) {
        if (temp[x - 1][y] && temp[x][y - 1])
            return true;
    }
    if (x - 1 >= 0 && y + 1 < m) {
        if (temp[x - 1][y] && temp[x][y + 1])
            return true;
    } 
    if (x + 1 < n && y - 1 >= 0) {
        if (temp[x + 1][y] && temp[x][y - 1])
            return true;
    }
    if (x + 1 < n && y + 1 < m) {
        if (temp[x + 1][y] && temp[x][y + 1])
            return true;
    }
    return false;
}

int main() {
    int t, cas = 1;
    scanf("%d", &t);
    while (t--) {
        memset(g, 0, sizeof(g));
        memset(vis, 0, sizeof(vis));
        scanf("%d%d%d", &n, &m, &k);
        int num = 0, x, y;
        for (int i = 0; i < k; i++) {
            scanf("%d%d", &x, &y);
            if (!g[x - 1][y - 1]) {
                g[x - 1][y - 1] = 1;
                num++;
            }
        }
        int res = 0;
        while (1) {
            int flag = 0;
            for (int i = 0; i < n; i++)
                for (int j = 0; j < m; j++)
                    temp[i][j] = g[i][j];
            for (int i = 0; i < n; i++)
                for (int j = 0; j < m; j++) {
                    if (temp[i][j] == 0 && judge(i, j)) {
                        g[i][j] = 1;
                        flag++;
                    }
                }
            if (flag)
                res += flag;
            else
                break;
        }
        printf("Case #%d:\n%d\n", cas++, res + num);
    }
    return 0;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved