[Luogu] 稳定婚姻
https://www.luogu.org/problemnew/show/1407
tarjan求一下强连通分量,然后判断一下两个人是否在同一强连通分量中
#include<iostream>
#include<cstring>
#include<cstdio>
#include<map> using namespace std; inline int read() {
int sum();
char ch(getchar());
for(; ch<''||ch>''; ch=getchar());
for(; ch>=''&&ch<=''; sum=sum*+(ch^),ch=getchar());
return sum;
} struct edge {
int e;
edge *n;
edge():e(),n(NULL) {}
} a[],*pre[]; int tot; inline void insert(int s,int e) {
a[++tot].e=e;
a[tot].n=pre[s];
pre[s]=&a[tot];
} int n,m;
char s1[],s2[];
map<string,int>ma;
int cnt,top,qlt;
int dfn[],low[],sta[],bl[];
bool vis[]; inline void tarjan(int u) {
dfn[u]=low[u]=++cnt;
sta[++top]=u;
vis[u]=;
for(edge *i=pre[u]; i; i=i->n) {
int e(i->e);
if(!dfn[e]) {
tarjan(e);
low[u]=min(low[u],low[e]);
} else if(vis[e])
low[u]=min(low[u],dfn[e]);
}
if(low[u]==dfn[u]) {
int tmp;
++qlt;
while() {
tmp=sta[top--];
vis[tmp]=;
bl[tmp]=qlt;
if(tmp==u)
break;
}
}
} int main()
{
memset(pre,NULL,sizeof(pre));
n=read();
for(int i=; i<=n; ++i) {
scanf("%s%s",s1,s2);
insert((i<<)-,i<<);
ma[s1]=(i<<)-,ma[s2]=i<<;
}
m=read();
for(int i=; i<=m; ++i) {
scanf("%s%s",s1,s2);
insert(ma[s2],ma[s1]);
}
for(int i=; i<=(n<<); ++i) if(!dfn[i]) tarjan(i);
for(int i=; i<=n; ++i)
if(bl[(i<<)-]==bl[i<<]) puts("Unsafe");
else puts("Safe");
return ;
}
[Luogu] 稳定婚姻的更多相关文章
- luogu P1407 稳定婚姻-tarjan
题目背景 原<工资>重题请做2397 题目描述 我国的离婚率连续7年上升,今年的头两季,平均每天有近5000对夫妇离婚,大城市的离婚率上升最快,有研究婚姻问题的专家认为,是与简化离婚手续有 ...
- 【HDU1914 The Stable Marriage Problem】稳定婚姻问题
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1914 题目大意:问题大概是这样:有一个社团里有n个女生和n个男生,每位女生按照她的偏爱程度将男生排序, ...
- UVA 1175 Ladies' Choice 稳定婚姻问题
题目链接: 题目 Ladies' Choice Time Limit: 6000MS Memory Limit: Unknown 64bit IO Format: %lld & %llu 问题 ...
- BZOJ2140: 稳定婚姻
题解: 题意就是求二分图的必须边. 我们有结论: 在残量网络上跑tarjan,对于一条边(u,v) 如果该边满流||scc[u]==scc[v],那么该边是可行边. 因为如果scc[u]==scc[v ...
- 【POJ 3487】 The Stable Marriage Problem (稳定婚姻问题)
The Stable Marriage Problem Description The stable marriage problem consists of matching members o ...
- 【UVAlive 3989】 Ladies' Choice (稳定婚姻问题)
Ladies' Choice Teenagers from the local high school have asked you to help them with the organizatio ...
- 【稳定婚姻问题】【HDU1435】【Stable Match】
2015/7/1 19:48 题意:给一个带权二分图 求稳定匹配 稳定的意义是对于某2个匹配,比如,( a ---- 1) ,(b----2) , 如果 (a,2)<(a,1) 且(2,a)& ...
- poj 3487 稳定婚姻
/** 稳定婚姻:男生不停的求婚,女生不停地拒绝 **/ #include <iostream> #include <queue> #include <cstdio> ...
- 稳定婚姻问题和Gale-Shapley算法(转)
什么是算法?每当有人问作者这样的问题时,他总会引用这个例子:假如你是一个媒人,有若干个单身男子登门求助,还有同样多的单身女子也前来征婚.如果你已经知道这些女孩儿在每个男孩儿心目中的排名,以及男孩儿们在 ...
随机推荐
- Mac电脑配置相关及软件工具安装推荐
iTerm2(https://www.iterm2.com/) 终端工具 Alfred(http://xclient.info/s/alfred.html) 快速启动器 WebStorm.VSCode ...
- SVM的概率输出(Platt scaling)
SVM的概率输出(Platt scaling) 2015-10-22 10:38:19 闲渔Love吉他 阅读数 8121 文章标签: Platt Scaling Calibr 更多 分类专栏: 计算 ...
- C# DateTime Subtract
DateTime start = DateTime.Now.AddDays(-20); DateTime end = DateTime.Now; TimeSpan ts = end.Subtract( ...
- maftools|TCGA肿瘤突变数据的汇总,分析和可视化
本文首发于公众号“生信补给站”,https://mp.weixin.qq.com/s/WG4JHs9RSm5IEJiiGEzDkg 之前介绍了使用maftools | 从头开始绘制发表级oncoplo ...
- Angularjs 省市区级联
Json 地区文件:http://blog.csdn.net/youshi520000/article/details/70808580 angularjs angular.module('app') ...
- 运维MES的日子里
可以看下<工业软件国内与国外差距,越来越小还是越来越大>.<MES技术国内现状与未来发展趋势>及<国际主要MES厂商>,总结来说中国工业是进步的,工业软件也是进步的 ...
- Keras 训练 inceptionV3 并移植到OpenCV4.0 in C++
1. 训练 # --coding:utf--- import os import sys import glob import argparse import matplotlib.pyplot as ...
- VBA连接操作符
VBA支持以下连接运算符. 假设变量A=5,变量B=10,则 - 运算符 描述 示例 + 将两个值添加为变量,其值是数字 A + B = 15 & 连接两个值 A & B = 510 ...
- 数据库入门(mySQL):数据操作与查询
增删改 单表查询 多表查询 一.增删改 1.插入数据记录(增) insert into table_name(field1,field2,field3,...fieldn) valuses(value ...
- PHP代码多人开发
我们一定遇到过这样的情况:许多项目是由多个人同时开发的,涉及到不同的开发环境和测试环境我们的许多PHP工程师在windows上开发代码虽然nginx+PHP+MySQL的环境也可以在windows上配 ...