【USACO 2017 February Platinum】Why Did the Cow Cross the Road II 题解(DP+线段树 或 最长上升子序列)

Description

Farmer John raises N breeds of cows ( 1 ≤ N ≤ 1 0 5 1\leq N \leq 10^5 1N105), conveniently numbered 1…N. Some pairs of breeds are friendlier than others, a property that turns out to be easily characterized in terms of breed ID: breeds a and b are friendly if |a−b|≤4, and unfriendly otherwise.
A long road runs through FJ’s farm. There is a sequence of N fields on one side of the road (one designated for each breed), and a sequence of N fields on the other side of the road (also one for each breed). To help his cows cross the road safely, FJ wants to draw crosswalks over the road. Each crosswalk should connect a field on one side of the road to a field on the other side where the two fields have friendly breed IDs (it is fine for the cows to wander into fields for other breeds, as long as they are friendly). Each field can be accessible via at most one crosswalk (so crosswalks don’t meet at their endpoints).

Given the ordering of N fields on both sides of the road through FJ’s farm, please help FJ determine the maximum number of crosswalks he can draw over his road, such that no two intersect.

Input

The first line of input contains N. The next N lines describe the order, by breed ID, of fields on one side of the road; each breed ID is an integer in the range 1…N. The last N lines describe the order, by breed ID, of the fields on the other side of the road. Each breed ID appears exactly once in each ordering.

Output

Please output the maximum number of disjoint “friendly crosswalks” Farmer John can draw across the road.

Sample Input

6
1
2
3
4
5
6
6
5
4
3
2
1

Sample Output

5

Solution

其实这题和金组同名题目在题意上一样,只不过数据范围开大了而已(金组 1 ≤ n ≤ 1000 1\leq n\leq 1000 1n1000)

这题比赛时第一眼看去有点像简单的最大匹配问题,但是看到连线的规则还包括两条线不能相交,瞬间。。。而且匈牙利算法的时间复杂度有点…

n 2 n^2 n2做法

由于注意到两条线不能相交,可以考虑转化为最大公共子串——LCS问题,因为子串的匹配是按顺序的,即保证了两线不能相交,只需将LCS中的判断规则改成 ∣ a − b ∣ ≤ 4 |a-b|\leq4 ab4

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值