博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ1486 Sorting Slides
阅读量:4951 次
发布时间:2019-06-11

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

POJ1486 Sorting Slides
Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 2246 Accepted: 822

Description

Professor Clumsey is going to give an important talk this afternoon. Unfortunately, he is not a very tidy person and has put all his transparencies on one big heap. Before giving the talk, he has to sort the slides. Being a kind of minimalist, he wants to do this with the minimum amount of work possible. 
The situation is like this. The slides all have numbers written on them according to their order in the talk. Since the slides lie on each other and are transparent, one cannot see on which slide each number is written. 
1486_1.jpg
Well, one cannot see on which slide a number is written, but one may deduce which numbers are written on which slides. If we label the slides which characters A, B, C, ... as in the figure above, it is obvious that D has number 3, B has number 1, C number 2 and A number 4. 
Your task, should you choose to accept it, is to write a program that automates this process.

Input

The input consists of several heap descriptions. Each heap descriptions starts with a line containing a single integer n, the number of slides in the heap. The following n lines contain four integers xmin, xmax, ymin and ymax, each, the bounding coordinates of the slides. The slides will be labeled as A, B, C, ... in the order of the input. 
This is followed by n lines containing two integers each, the x- and y-coordinates of the n numbers printed on the slides. The first coordinate pair will be for number 1, the next pair for 2, etc. No number will lie on a slide boundary. 
The input is terminated by a heap description starting with n = 0, which should not be processed. 

Output

For each heap description in the input first output its number. Then print a series of all the slides whose numbers can be uniquely determined from the input. Order the pairs by their letter identifier. 
If no matchings can be determined from the input, just print the word none on a line by itself. 
Output a blank line after each test case. 

Sample Input

46 22 10 204 18 6 168 20 2 1810 24 4 89 1519 1711 721 1120 2 0 20 2 0 21 11 10

Sample Output

Heap 1(A,4) (B,1) (C,2) (D,3)Heap 2none

Source

******************************************************************************

题目大意: 这道题的意思是一些大小不等透明的幻灯片(只有轮廓和上面的数字可见)ABCDE…按顺序叠放在一起,现在知道每个幻灯片左上角和右下角的坐标,并且由于幻灯片是透明的,所以能看到幻灯片上的数字(给出了每个数字的坐标,但不知道这些数字分别属于哪个幻灯片),现在要你根据当前的已知信息,输出能够确定的幻灯片编号和数字的匹配,例如(A,4) (B,1) (C,2) (D,3); 解题思路:网上常说什么二分图的必须边,需要先匈牙利一遍再一一删边求答案。但个人觉得没必要,这题一看,第一眼:贪心。我每次贪一个维度为1的点,然后把他的对应点找出来,然后将与对应点相连的点的维度都减去1.然后继续贪心。

#include 
#include
#include
#define N 60using namespace std;vector
gra[N];int dis[N],vis[N];int da[N][4],n,mat[N];void re(void){ for(int i=1;i<=2*n;i++) gra[i].clear(); memset(dis,0,sizeof(dis)); for(int i=1;i<=n;i++) scanf("%d%d%d%d",&da[i][0],&da[i][1],&da[i][2],&da[i][3]); for(int i=1;i<=n;i++) { int x,y; scanf("%d%d",&x,&y); for(int j=1;j<=n;j++) if((x>da[j][0]&&x
da[j][2]&&y
2*n) { break; } vis[pos]=1; int opp; for(int i=0;i

  

转载于:https://www.cnblogs.com/Fatedayt/archive/2011/10/12/2208112.html

你可能感兴趣的文章
硬件之美
查看>>
[转载]java开发中的23种设计模式
查看>>
表格的拖拽功能
查看>>
函数的形参和实参
查看>>
文字过长 用 ... 表示 CSS实现单行、多行文本溢出显示省略号
查看>>
1Caesar加密
查看>>
【TP SRM 703 div2 500】 GCDGraph
查看>>
MapReduce 重要组件——Recordreader组件 [转]
查看>>
webdriver api
查看>>
转载-FileZilla Server源码分析(1)
查看>>
apache 实现图标缓存客户端
查看>>
MediaWiki左侧导航栏通过特殊页面就可以设置。
查看>>
html基础之DOM操作
查看>>
几种图表库
查看>>
揭秘:黑客必备的Kali Linux是什么,有哪些弊端?
查看>>
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
UVa11078:Open Credit System
查看>>