poj 1928 The Peanuts

it2024-04-16  9

The Peanuts Time Limit: 1000MS Memory Limit: 30000KTotal Submissions: 6217 Accepted: 2614

Description

Mr. Robinson and his pet monkey Dodo love peanuts very much. One day while they were having a walk on a country road, Dodo found a sign by the road, pasted with a small piece of paper, saying "Free Peanuts Here! " You can imagine how happy Mr. Robinson and Dodo were. There was a peanut field on one side of the road. The peanuts were planted on the intersecting points of a grid as shown in Figure-1. At each point, there are either zero or more peanuts. For example, in Figure-2, only four points have more than zero peanuts, and the numbers are 15, 13, 9 and 7 respectively. One could only walk from an intersection point to one of the four adjacent points, taking one unit of time. It also takes one unit of time to do one of the following: to walk from the road to the field, to walk from the field to the road, or pick peanuts on a point. According to Mr. Robinson's requirement, Dodo should go to the plant with the most peanuts first. After picking them, he should then go to the next plant with the most peanuts, and so on. Mr. Robinson was not so patient as to wait for Dodo to pick all the peanuts and he asked Dodo to return to the road in a certain period of time. For example, Dodo could pick 37 peanuts within 21 units of time in the situation given in Figure-2. Your task is, given the distribution of the peanuts and a certain period of time, tell how many peanuts Dodo could pick. You can assume that each point contains a different amount of peanuts, except 0, which may appear more than once.

Input

The first line of input contains the test case number T (1 <= T <= 20). For each test case, the first line contains three integers, M, N and K (1 <= M, N <= 50, 0 <= K <= 20000). Each of the following M lines contain N integers. None of the integers will exceed 3000. (M * N) describes the peanut field. The j-th integer X in the i-th line means there are X peanuts on the point (i, j). K means Dodo must return to the road in K units of time.

Output

For each test case, print one line containing the amount of peanuts Dodo can pick.

Sample Input

2 6 7 21 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 0 7 0 15 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 6 7 20 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 0 7 0 15 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0

Sample Output

37 28 #include<iostream>#include<vector>#include<algorithm>#include<cmath>using namespace std;struct node{int x;int y;int peanut;};node farm[3000*3000];int comp(node a,node b){return a.peanut>b.peanut;}int main(){int n,m,k;int i,j,p;int temp;int cases;// freopen("E:\\c++\\oj\\t.txt","rt",stdin); cin>>cases;while(cases--) { scanf("%d%d%d",&n,&m,&k);int p=1;for(i=0;i<n;i++) {for(j=0;j<m;j++) { cin>>temp;if(temp) { farm[p].x=i; farm[p].y=j; farm[p].peanut=temp; p++; } } } sort(farm+1,farm+p,comp); farm[0].x=0; farm[0].y=farm[1].y; farm[0].peanut=0;int total=1;int have=0;for(i=0;i<p;i++) {if((total+abs(farm[i].x-farm[i+1].x)+abs(farm[i].y-farm[i+1].y)+farm[i+1].x+2)<=k) { have+=farm[i+1].peanut; total+=(abs(farm[i].x-farm[i+1].x)+abs(farm[i].y-farm[i+1].y)+1); }else {break; } } cout<<have<<endl; }return 0;}

转载于:https://www.cnblogs.com/w0w0/archive/2011/12/17/2290899.html

相关资源:数据结构—成绩单生成器
最新回复(0)