HDU 1816. Get Luffy Out *

链接

http://acm.hdu.edu.cn/showproblem.php?pid=1816

题意

$n$ 对钥匙,一对钥匙中用了其中一把另一把就不能用了

$m$ 扇门,每扇门可以用两把钥匙(选一把即可)解开

求按顺序最多能解开多少扇门

思路

2 - SAT

对于 $n$ 对钥匙,设 $a,b$ 为一对钥匙

  • 选了 $a$ 则 $b$ 不能选
  • 选了 $b$ 则 $a$ 不能选

对于 $m$ 扇门,设 $a,b$ 可以解开其中一扇门

  • 不选 $a$ 则选 $b$
  • 不选 $b$ 则选 $a$

二分 $m$ 建图,判断是否矛盾

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <bits/stdc++.h>
#define SZ(x) (int)(x).size()
#define ALL(x) (x).begin(),(x).end()
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
using namespace std;
typedef double DB;
typedef long long LL;
typedef pair<int,int> PII;
typedef vector<int> VI;
typedef vector<PII> VPII;
//head
const int N=5000;
int n,m,cnt,cnt_scc,top,dfn[N],low[N],c[N],stk[N],a[N],b[N];
bool ins[N];
VI G[N],g[N];
void init() {
cnt=cnt_scc=top=0;
for(int i=0;i<n<<1;i++) g[i].clear(),dfn[i]=low[i]=c[i]=0,ins[i]=false;
}
void tarjan(int u) {
dfn[u]=low[u]=++cnt;
stk[++top]=u;
ins[u]=true;
for(auto v:G[u]) {
if(!dfn[v]) {
tarjan(v);
low[u]=min(low[u],low[v]);
}
else if(ins[v]) low[u]=min(low[u],dfn[v]);
}
for(auto v:g[u]) {
if(!dfn[v]) {
tarjan(v);
low[u]=min(low[u],low[v]);
}
else if(ins[v]) low[u]=min(low[u],dfn[v]);
}
if(dfn[u]==low[u]) {
cnt_scc++;
int x;
do {
x=stk[top--];
ins[x]=false;
c[x]=cnt_scc;
} while(u!=x);
}
}
bool check(int mid) {
init();
for(int i=1;i<=mid;i++) {
g[a[i]+n].PB(b[i]);
g[b[i]+n].PB(a[i]);
}
for(int i=0;i<n<<1;i++) if(!dfn[i]) tarjan(i);
for(int i=0;i<n;i++) if(c[i]==c[i+n]) return false;
return true;
}
int main() {
while(~scanf("%d%d",&n,&m)&&n+m) {
n<<=1;
for(int i=0;i<n<<1;i++) G[i].clear();
for(int i=0;i<n>>1;i++) {
int x,y;
scanf("%d%d",&x,&y);
G[x].PB(y+n);
G[y].PB(x+n);
}
for(int i=1;i<=m;i++) scanf("%d%d",&a[i],&b[i]);
int l=0,r=m;
while(l<r) {
int mid=l+r+1>>1;
if(check(mid)) l=mid;
else r=mid-1;
}
printf("%d\n",l);
}
return 0;
}