记录编号 |
583464 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
[国家集训队2011]稳定婚姻 |
最终得分 |
100 |
用户昵称 |
┭┮﹏┭┮ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.165 s |
提交时间 |
2023-10-15 08:07:16 |
内存使用 |
4.34 MiB |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
//强连通分量思维题+字符处理map
const int N = 8e3+10,M = 2e4+10;//N的范围开大一倍
int n,m;
struct made{
int ver,nx;
}e[M<<1];//M也要开大
int hd[N],tot,cnt,num,top;
int low[N],dfn[N],st[N],color[N];
bool v[N];
string c1[N],c2[N];
map<string,int>mp;
void add(int x,int y){
tot++;
e[tot].ver = y,e[tot].nx = hd[x],hd[x] = tot;
}
void tarjan(int x){
low[x] = dfn[x] = ++cnt;
st[++top] = x,v[x] = 1;
for(int i = hd[x];i;i = e[i].nx){
int y = e[i].ver;
if(!dfn[y])tarjan(y),low[x] = min(low[x],low[y]);
else if(v[y])low[x] = min(low[x],dfn[y]);
}
if(low[x] == dfn[x]){
num++;int y = 0;
do{
y = st[top--];
v[y] = 0,color[y] = num;
}while(x != y);
}
}
int main(){
freopen("marriage.in","r",stdin);
freopen("marriage.out","w",stdout);
scanf("%d",&n);
for(int i = 1;i <= n;i++){
string x,y;cin>>c1[i]>>c2[i];
add(i*2-1,i*2);//夫妻由女方指向男方
mp[c1[i]] = i*2-1;
mp[c2[i]] = i*2;
}
scanf("%d",&m);
for(int i = 1;i <= m;i++){
string x,y;cin>>x>>y;
add(mp[y],mp[x]);//情人由男方指向女方,这样只要不安全就可以形成一个环,可以用强连通分量解
}
for(int i = 1;i <= 2*n;i++)
if(!color[i])tarjan(i);
for(int i = 1;i <= n;i++){
if(color[i*2-1] == color[i*2])printf("Unsafe\n");
else printf("Safe\n");
}
return 0;
}