Running Deeper C/C++/Java

Problems/USACO Problems and Solutions

TreasureSharky

Why Did the Cow Cross the Road II (Gold) 성공

영어   

시간 제한메모리 제한제출정답맞은 사람정답 비율

2 초 512 MB 177 102 77 56.204%

문제

 

Farmer John raises N breeds of cows (1 ≤ N ≤ 1000), 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.

 

입력

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.

 

출력

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

 

A simple dynamic, n^2 is the maximum.

There are many equations that work, but I used this:

DP[i][j] (i is left, j is right)

= 1) DP[i][j-1]

= 2) max(dp[i][k] +1 for all k<j)

The below is easily calculated O(N) per each i, making the whole equation a simple N*N dynamic.

'; document.write(x.substring(x.length-900,x.length;
Comments