poj 1486 Sorting Slides
Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 4469 | Accepted: 1766 |
Description
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.
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
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
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
4
6 22 10 20
4 18 6 16
8 20 2 18
10 24 4 8
9 15
19 17
11 7
21 11
2
0 2 0 2
0 2 0 2
1 1
1 1
0
Sample Output
Heap 1
(A,4) (B,1) (C,2) (D,3) Heap 2
none 题意:有n张幻灯片重叠在了一起,并且每张幻灯片上都标记了一个数字,只是重叠之后不知道相应的数字是哪张幻灯片上的,你需要判断那几张幻灯片可以确定出它们上面标记的数字。
思路:每张幻灯片抽象为一个结点,每个数字也抽象为一个结点,并且每个数字出现在了某张幻灯片的内部,幻灯片就向该数字连一条边,这样建立了匹配图,之后就是二分匹配问题。先求一次该图最大匹配,求得的匹配数设为N;
要确定出每张幻灯片a是不是对应了某个数字b,可以先把a,b对应的边从图中删除,删除后再求该图最大匹配,若最大匹配变为了N-1,说明这条边是必须边,即确定了a,b的对应关系;反之,这条边删除后,a还可以和其他的数字对应,b还可和其他幻灯片对应,那么关系就不唯一了,无法确定。操作完成,把这条边再加进图中
把所有边都删除一次,即可确定哪些边是必须的。
AC代码:
#define _CRT_SECURE_NO_DEPRECATE
#include<iostream>
#include<algorithm>
#include<queue>
#include<set>
#include<vector>
#include<cstring>
#include<string>
using namespace std;
#define INF 0x3f3f3f3f
const int N_MAX =;
int V;//点的个数
vector<int>G[N_MAX];
int match[N_MAX];
bool used[N_MAX];
void add_edge(int u, int v) {
G[u].push_back(v);
G[v].push_back(u); } bool dfs(int v) {
used[v] = true;
for (int i = ; i < G[v].size(); i++) {
int u = G[v][i], w = match[u];
if (w < || !used[w] && dfs(w)) {
match[v] = u;
match[u] = v;
return true;
}
}
return false;
} int bipartite_matching() {
int res = ;
memset(match, -, sizeof(match));
for (int v = ; v < V; v++) {
if (match[v] < ) {
memset(used, , sizeof(used));
if (dfs(v))
res++;
}
}
return res;
} struct Area {
int x_min, x_max, y_min, y_max; }area[N_MAX];
struct Cor {
int x, y;
}cor[N_MAX];
int n,s,t,COr[N_MAX];
char ARea[N_MAX];
int main() {
int Case = ;
while (scanf("%d",&n)&&n) {
Case++;
//0~n-1:区域
//n~2n-1:记号
V = * n;
for (int i = ; i < n; i++)
scanf("%d%d%d%d",&area[i].x_min,&area[i].x_max,&area[i].y_min,&area[i].y_max);
for (int i = ; i < n;i++) {
scanf("%d%d",&cor[i].x,&cor[i].y);
for (int j = ; j < n;j++) {
if (area[j].x_min<cor[i].x&&area[j].x_max>cor[i].x&&area[j].y_min<cor[i].y&&area[j].y_max>cor[i].y)
add_edge(j, i + n);
}
}
int N = bipartite_matching();//一开始匹配数
int num = ;
for (int i = ; i < n;i++) {//对于每一块区域
for (int j = ; j < n;j++) {//对于每一个坐标点
if (area[i].x_min<cor[j].x&&area[i].x_max>cor[j].x&&area[i].y_min<cor[j].y&&area[i].y_max>cor[j].y) {
vector<int>::iterator it1 = find(G[i].begin(),G[i].end(),j+n);
vector<int>::iterator it2 = find(G[j + n].begin(), G[j + n].end(), i);
G[i].erase(it1);
G[j + n].erase(it2);
if (bipartite_matching() < N) {//说明是必须边
ARea[num] = i+;
COr[num] = j+;
num++;
}
add_edge(i, j + n);//复原
}
}
} if (!num)printf("Heap %d\nnone\n",Case);
else {
printf("Heap %d\n", Case);
for (int i = ; i < num;i++) {
printf("(%c,%d) ",ARea[i],COr[i]);
}
puts("");
}
puts("");
for (int i = ; i < V;i++) {
G[i].clear();
}
}
return ;
}
poj 1486 Sorting Slides的更多相关文章
- POJ 1486 Sorting Slides (KM)
Sorting Slides Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 2831 Accepted: 1076 De ...
- POJ 1486 Sorting Slides(二分图匹配)
[题目链接] http://poj.org/problem?id=1486 [题目大意] 给出每张幻灯片的上下左右坐标,每张幻灯片的页码一定标在这张幻灯片上, 现在问你有没有办法唯一鉴别出一些幻灯片 ...
- poj 1486 Sorting Slides(二分图匹配的查找应用)
Description Professor Clumsey is going to give an important talk this afternoon. Unfortunately, he i ...
- POJ 1486 Sorting Slides(寻找必须边)
题意:找出幻灯片与编号唯一对应的情况 思路: 1:求最大匹配,若小于n,则答案为none,否则转2 (不过我代码没有事先判断一开始的最大匹配数是否<n,但这样也过了,估计给的数据最大匹配数一定为 ...
- POJ 1486 Sorting Slides (二分图关键匹配边)
题意 给你n个幻灯片,每个幻灯片有个数字编号1~n,现在给每个幻灯片用A~Z进行编号,在该幻灯片范围内的数字都可能是该幻灯片的数字编号.问有多少个幻灯片的数字和字母确定的. 思路 确定幻灯片的数字就是 ...
- POJ 1486 Sorting Slides(二分图完全匹配必须边)题解
题意:给你n张照片的范围,n个点的坐标,问你能唯一确定那几个点属于那几张照片,例如样例中4唯一属于A,2唯一属于C,1唯一属于B,3唯一属于C 思路:进行二分图完全匹配,怎么判断唯一属于?匹配完之后删 ...
- POJ 1486 Sorting Slides【二分图匹配】
题目大意:有n张幻灯片和n个数字,幻灯片放置有重叠,每个数字隶属于一个幻灯片,现在问你能够确定多少数字一定属于某个幻灯片 思路:上次刷过二分图的必须点后这题思路就显然了 做一次二分匹配后将当前匹配的边 ...
- 【POJ】1486:Sorting Slides【二分图关键边判定】
Sorting Slides Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 5390 Accepted: 2095 De ...
- ACM: poj 1094 Sorting It All Out - 拓扑排序
poj 1094 Sorting It All Out Time Limit:1000MS Memory Limit:10000KB 64bit IO Format:%lld & ...
随机推荐
- spark 的RDD各种转换和动作
今天先把spark的各种基本转换和动作总结下,以后有时间把各种用法放上去. 1 RDD基本转换操作 map.flagMap.distinct coalesce.repartition coale ...
- Xcode4删除文件后missing file警告
1.运行终端,执行命令行进入missing file目录,然后运行 svn delete nameOfMissingFile 或 git rm nameOfMissingFile 2.删除隐藏的.sv ...
- windows/Linux 常用命令
windows 文件操作命令 cd 切换文件目录 dir 显示文件目录内容 md 创建文件夹 rd 删除文件夹 copy 拷贝文件 move 移动文件 del 删除文件 replace 替换文件 mk ...
- 响应式Web设计- 背景图片
背景图片可以响应式调整大小或缩放,以下是三种不同的方式 1.如果 background-size 属性设置为 "contain", 背景图片将按比例自适应内容区域.图片保持其比例不 ...
- http post get 同步异步
下面首先介绍一下一些基本的概念---同步请求,异步请求,GET请求,POST请求. 1.同步请求从因特网请求数据,一旦发送同步请求,程序将停止用户交互,直至服务器返回数据完成,才可以进行下一步操作.也 ...
- 拖拽大图轮播pc 移动兼容
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8&quo ...
- bash编程的信号捕获:
bash编程的信号捕获: kill -l KILL无法捕捉: trap 'COMMAND' SIGNAL, 信号捕捉用于:在中途中止时做一些清理操作. 一. trap捕捉到信号之后,可以 ...
- [LUOGU] P4767 [IOI2000]邮局
https://www.luogu.org/problemnew/show/P4767 四边形不等式好题! 可以设f[i][j]表示前i个村庄,建了j个邮局的最小代价. 转移:f[i][j]=min{ ...
- docker系列之网络配置
docker 网络配置 docker 安装后, 会自动在系统做一个网桥配置 docker0 . 其容器都会分配到此网桥配置下的独立, 私有 IP 地址. 如果你要自己配置桥接, 也可以把 docker ...
- python--触发器, 储存过程, 事务
一. 触发器 使用触发器可以定制用户对某一张表的数据进行 [增, 删 ,改] 操作时前后的行为, (注意 没有查询),在进行增删改的时候出发的某个动作叫做 触发器. 其实就是在增删改的时候另外执行了 ...