Free Pies (DP)

Source: Internet
Author: User

Free piesTime limit:2000/1000 MS (java/others) Memory limit:65536/32768 K (java/others)
Total submission (s): 28610 Accepted Submission (s): 9765


Problem description said the sky will not drop pies, but one day Gameboy is walking on the path home, suddenly the sky fell a lot of pie. Gameboy's character was so good that the pie was not lost elsewhere, and fell within 10 metres of his side. If the pie fell on the ground, of course, it could not eat, so Gameboy immediately remove the backpack to pick up. But because the trails could not stand on either side, he could only pick it up on the path. As Gameboy usually stay in the room to play games, although in the game is a skill Agile master, but in the reality of the motor is particularly dull, every second species only in the move not more than a meter in the range to catch falling pies. Now mark the path with the coordinates:

To make the problem easier, let's say that over the next period of time, the pie drops in 0-10 of these 11 positions. At the beginning Gameboy stood at 5, so in the first second he could only receive a 4,5,6 in one of these three positions. Q. How many pies can Gameboy receive? (assuming his backpack can hold an infinite number of pies)

Input data has multiple groups. The first behavior of each group of data is a positive integer n (0<n<100000), which indicates that there are n pies falling on the path. In the row of n rows, each row has two integers x,t (0<t<100000), indicating that there is a pie drop at x point in T-second. The same second may drop multiple pies at the same point. N=0 when the input ends.

Output each set of input data corresponds to a row of outputs. Output an integer m, indicating that Gameboy may receive a maximum of M pies.
Tip: The amount of input data in the subject is relatively large, it is recommended to read in scanf, with CIN may time out.


Sample Input
65 14 16 17 27 28 30

Sample Output
4 State equation: Attention to the boundary problem
if (j<10&&j>0) Dp[i][j]=max (Dp[i-1][j-1],max (Dp[i-1][j+1],dp[i-1][j])) +a[i][j]; else if (j==10)  Dp[i][j]=max (Dp[i-1][j-1],dp[i-1][j]) +a[i][j], else if (j==0)   Dp[i][j]=max (dp[i-1][j],dp[ I-1][J+1]) +a[i][j];
#include <iostream> #include <cstdio> #include <algorithm> #include <cstring> #include <  string>using namespace std; #define MAXN 100005#define INF 0x3f3f3f3fint dp[maxn][11];int a[maxn][11];int main () {int    N    int X[MAXN],T[MAXN];    Freopen ("In.txt", "R", stdin);            while (~SCANF ("%d", &n) &&n) {int maxt=0;            memset (a,0,sizeof a);        memset (dp,0,sizeof DP);            for (int i=1;i<=n;i++) {scanf ("%d%d", &x[i],&t[i]);            a[t[i]][x[i]]++;        if (T[I]&GT;MAXT) maxt=t[i];        } Dp[1][4]=a[1][4];        DP[1][5]=A[1][5];        DP[1][6]=A[1][6]; for (int i=2;i<=maxt;i++) for (int j=0;j<=10;j++) {if (j<10&&j>0) dp[i][j]=m                    Ax (Dp[i-1][j-1],max (DP[I-1][J+1],DP[I-1][J)) +a[i][j];                    else if (j==10) Dp[i][j]=max (Dp[i-1][j-1],dp[i-1][j]) +a[i][j];   else if (j==0) Dp[i][j]=max (dp[i-1][j],dp[i-1][j+1]) +a[i][j];         } int maxs=0;        for (int i=0;i<=10;i++) {Maxs=max (maxs,dp[maxt][i]);    } printf ("%d\n", MAXS); }}


Free Pies (DP)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.