博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2585:Window Pains(拓扑排序)
阅读量:5967 次
发布时间:2019-06-19

本文共 4397 字,大约阅读时间需要 14 分钟。

                                            Window Pains

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 2524   Accepted: 1284

Description

Boudreaux likes to multitask, especially when it comes to using his computer. Never satisfied with just running one application at a time, he usually runs nine applications, each in its own window. Due to limited screen real estate, he overlaps these windows and brings whatever window he currently needs to work with to the foreground. If his screen were a 4 x 4 grid of squares, each of Boudreaux's windows would be represented by the following 2 x 2 windows: 

1 1 . .
1 1 . .
. . . .
. . . .
. 2 2 .
. 2 2 .
. . . .
. . . .
. . 3 3
. . 3 3
. . . .
. . . .
. . . .
4 4 . .
4 4 . .
. . . .
. . . .
. 5 5 .
. 5 5 .
. . . .
. . . .
. . 6 6
. . 6 6
. . . .
. . . .
. . . .
7 7 . .
7 7 . .
. . . .
. . . .
. 8 8 .
. 8 8 .
. . . .
. . . .
. . 9 9
. . 9 9

When Boudreaux brings a window to the foreground, all of its squares come to the top, overlapping any squares it shares with other windows. For example, if window 1and then window 2 were brought to the foreground, the resulting representation would be:

1 2 2 ?
1 2 2 ?
? ? ? ?
? ? ? ?
If window 4 were then brought to the foreground:
1 2 2 ?
4 4 2 ?
4 4 ? ?
? ? ? ?

. . . and so on . . . 

Unfortunately, Boudreaux's computer is very unreliable and crashes often. He could easily tell if a crash occurred by looking at the windows and seeing a graphical representation that should not occur if windows were being brought to the foreground correctly. And this is where you come in . . .

Input

Input to this problem will consist of a (non-empty) series of up to 100 data sets. Each data set will be formatted according to the following description, and there will be no blank lines separating data sets. 

A single data set has 3 components: 

  1. Start line - A single line: 
    START 
     
  2. Screen Shot - Four lines that represent the current graphical representation of the windows on Boudreaux's screen. Each position in this 4 x 4 matrix will represent the current piece of window showing in each square. To make input easier, the list of numbers on each line will be delimited by a single space. 
  3. End line - A single line: 
    END 

After the last data set, there will be a single line: 
ENDOFINPUT 
Note that each piece of visible window will appear only in screen areas where the window could appear when brought to the front. For instance, a 1 can only appear in the top left quadrant.

Output

For each data set, there will be exactly one line of output. If there exists a sequence of bringing windows to the foreground that would result in the graphical representation of the windows on Boudreaux's screen, the output will be a single line with the statement: 

THESE WINDOWS ARE CLEAN 
Otherwise, the output will be a single line with the statement: 
THESE WINDOWS ARE BROKEN 
 

Sample Input

START1 2 3 34 5 6 67 8 9 97 8 9 9ENDSTART1 1 3 34 1 3 37 7 9 97 7 9 9ENDENDOFINPUT

Sample Output

THESE WINDOWS ARE CLEANTHESE WINDOWS ARE BROKEN

题意

有9个程序窗口在4*4的矩阵中,每个程序窗口占用2*2矩阵的空间,编号为1~9。如下图(画的有点乱,应该能看懂)

在这些程序窗口中存在相互覆盖的关系,给出9*9的数字矩阵,每个数字表示程序窗口。问这样的相互覆盖关系是否合理

思路

拓扑排序模板题。但是建图太难了T_T,建好图进行拓扑排序,判断排序之后还有没有相连的边就行了

样例中的建好的图如下图(图片来自)

AC代码

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define ll long long#define ms(a) memset(a,0,sizeof(a))#define pi acos(-1.0)#define INF 0x3f3f3f3fconst double E=exp(1);const int maxn=1e3+10;using namespace std;int a[maxn][maxn];int vis[maxn];int b[maxn][maxn];void toposort(){ for(int i=1;i<=9;i++) { for(int j=1;j<=9;j++) { if(vis[j]==0) { vis[j]--; for(int k=1;k<=9;k++) { if(b[j][k]) { b[j][k]--; vis[k]--; } } break; } } }}int main(int argc, char const *argv[]){ ios::sync_with_stdio(false); string str; string st; while(cin>>str) { ms(vis); ms(a); ms(b); if(str=="ENDOFINPUT") break; for(int i=1;i<=4;i++) for(int j=1;j<=4;j++) cin>>a[i][j]; cin>>st; for(int i=1;i<=3;i++) { for(int j=1;j<=3;j++) { for(int ii=0;ii<2;ii++) { for(int jj=0;jj<2;jj++) { if(a[i+ii][j+jj]==j+(i-1)*3) continue; else if(b[a[i+ii][j+jj]][j+(i-1)*3]==0) { b[a[i+ii][j+jj]][j+(i-1)*3]=1; vis[j+(i-1)*3]++; } } } } } toposort(); int flag=0; for(int i=1;i<=9;i++) { for(int j=1;j<=9;j++) { flag+=b[i][j]; } } if(flag) cout<<"THESE WINDOWS ARE BROKEN"<

 

转载于:https://www.cnblogs.com/Friends-A/p/10324418.html

你可能感兴趣的文章
解决vim中不能使用小键盘
查看>>
jenkins权限管理,实现不同用户组显示对应视图views中不同的jobs
查看>>
我的友情链接
查看>>
批量删除用户--Shell脚本
查看>>
Eclipse Java @Override 报错
查看>>
知道双字节码, 如何获取汉字 - 回复 "pinezhou" 的问题
查看>>
linux的日志服务器关于屏蔽一些关键字的方法
查看>>
mysql多实例实例化数据库
查看>>
javascript 操作DOM元素样式
查看>>
HBase 笔记3
查看>>
【Linux】Linux 在线安装yum
查看>>
Atom 编辑器系列视频课程
查看>>
[原][osgearth]osgearthviewer读取earth文件,代码解析(earth文件读取的一帧)
查看>>
使用dotenv管理环境变量
查看>>
温故js系列(11)-BOM
查看>>
Vuex学习
查看>>
bootstrap - navbar
查看>>
切图崽的自我修养-[ES6] 编程风格规范
查看>>
服务器迁移小记
查看>>
FastDFS存储服务器部署
查看>>