POJ——T2446 Chessboard

http://poj.org/problem?id=2446

Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 18560 Accepted: 5857

Description

Alice and Bob often play games on chessboard. One day, Alice draws a board with size M * N. She wants Bob to use a lot of cards with size 1 * 2 to cover the board. However, she thinks it too easy to bob, so she makes some holes on the board (as shown in the figure below). 

We call a grid, which doesn’t contain a hole, a normal grid. Bob has to follow the rules below: 
1. Any normal grid should be covered with exactly one card. 
2. One card should cover exactly 2 normal adjacent grids. 

Some examples are given in the figures below: 
 
A VALID solution.

 
An invalid solution, because the hole of red color is covered with a card.

 
An invalid solution, because there exists a grid, which is not covered.

Your task is to help Bob to decide whether or not the chessboard can be covered according to the rules above.

Input

There are 3 integers in the first line: m, n, k (0 < m, n <= 32, 0 <= K < m * n), the number of rows, column and holes. In the next k lines, there is a pair of integers (x, y) in each line, which represents a hole in the y-th row, the x-th column.

Output

If the board can be covered, output "YES". Otherwise, output "NO".

Sample Input

4 3 2
2 1
3 3

Sample Output

YES

Hint

 
A possible solution for the sample input.

Source

POJ Monthly,charlescpp
 
题解:
把棋盘染成这个样子,有障碍的不染,用黑色格子与白色格子匹配,对这一个二分图求最大匹配。如果Ans*2+K=N*M,则能完全覆盖

 

 1 #include <algorithm>
 2 #include <cstring>
 3 #include <cstdio>
 4 
 5 using namespace std;
 6 
 7 const int N(32*32);
 8 int n,m,p,x,y,ans;
 9 int match[N][N][2],lose[N][N];
10 int vis[N][N],sumvis;
11 int fx[4]={1,0,-1,0};
12 int fy[4]={0,1,0,-1};
13 
14 bool DFS(int x,int y)
15 {
16     for(int i=0;i<4;i++)
17     {
18         int xx=x+fx[i], yy=y+fy[i];
19         if(vis[xx][yy]!=sumvis&&!lose[xx][yy])
20         {
21             vis[xx][yy]=sumvis;
22             if(!match[xx][yy][0]||DFS(match[xx][yy][0],match[xx][yy][1]))
23             {
24                 match[xx][yy][0]=x;
25                 match[xx][yy][1]=y;
26                 return true;
27             }
28         }
29     }
30     return false;
31 }
32 
33 int main()
34 {
35     while(~scanf("%d%d%d",&n,&m,&p))
36     {
37         if((n*m-p)%2)
38         {
39             printf("NO\n");
40             continue;
41         }
42         ans=sumvis=0;
43         memset(vis,0,sizeof(vis));
44         memset(lose,0,sizeof(lose));
45         memset(match,0,sizeof(match));
46         for(int i=1;i<=p;i++)
47         {
48             scanf("%d%d",&x,&y);
49             lose[y][x]=1;
50         }
51         for(int i=0;i<=n;i++) 
52             lose[i][0]=lose[i][m+1]=1;
53         for(int i=0;i<=m;i++) 
54             lose[0][i]=lose[n+1][i]=1;
55         for(int i=1;i<=n;i++)
56           for(int j=1;j<=m;j++)
57             if((i+j)%2==0&&!lose[i][j])
58             {
59                 sumvis++;
60                 if(DFS(i,j)) ans++;
61             }
62         if(ans*2+p==m*n) printf("YES\n");
63         else printf("NO\n");
64     }
65     return 0;
66 }

 

转载于:https://www.cnblogs.com/Shy-key/p/6901269.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
毕业设计,基于SpringBoot+Vue+MySQL开发的体育馆管理系统,源码+数据库+毕业论文+视频演示 现代经济快节奏发展以及不断完善升级的信息化技术,让传统数据信息的管理升级为软件存储,归纳,集中处理数据信息的管理方式。本体育馆管理系统就是在这样的大环境下诞生,其可以帮助管理者在短时间内处理完毕庞大的数据信息,使用这种软件工具可以帮助管理人员提高事务处理效率,达到事半功倍的效果。此体育馆管理系统利用当下成熟完善的SpringBoot框架,使用跨平台的可开发大型商业网站的Java语言,以及最受欢迎的RDBMS应用软件之一的Mysql数据库进行程序开发。实现了用户在线选择试题并完成答题,在线查看考核分数。管理员管理收货地址管理、购物车管理、场地管理、场地订单管理、字典管理、赛事管理、赛事收藏管理、赛事评价管理、赛事订单管理、商品管理、商品收藏管理、商品评价管理、商品订单管理、用户管理、管理员管理等功能。体育馆管理系统的开发根据操作人员需要设计的界面简洁美观,在功能模块布局上跟同类型网站保持一致,程序在实现基本要求功能时,也为数据信息面临的安全问题提供了一些实用的解决方案。可以说该程序在帮助管理者高效率地处理工作事务的同时,也实现了数据信息的整体化,规范化与自动化。 关键词:体育馆管理系统;SpringBoot框架;Mysql;自动化
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值