标签:splay font targe 正是 ace cout names 网格 blank
1
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
37
题解
因为每次都从大到小依次摘,先记录有花生的地方的花生数,x,y,并按数量排序,用t保存摘完某次花生的时间便于算回去的时间和累加,sumt[]保存摘完各次花生就回去的时间,sum[]记录花生数量。最后比较k与sumt[]的大小,若在循环过程中k<sumt[i] 则输出sum[i-1]的值,若k>sumt[max] 则输出sum[max]。
第一次错没考虑到k>sumt[max]的情况,第二次竟然是这样例有问题,一开始要输入w……
#include<iostream> #include<cstring> #include<algorithm> using namespace std; int a[60][60],sumt[2510]={0},sum[2510]={0}; struct Peanut{ int x,y,s; }; struct sortf{ bool operator()(const Peanut &a,const Peanut &b){ return a.s>b.s; } }; Peanut f[2510]; int main() { int w; cin >> w; while(w--){ memset(a,0,sizeof(a)); int m,n,k,ii=0; cin >> m >> n >> k; for(int i=1;i<=m;i++){ for(int j=1;j<=n;j++){ cin >> a[i][j]; if(a[i][j]>0) { ii++; f[ii].s=a[i][j]; f[ii].x=i; f[ii].y=j; } } } sort(f+1,f+1+ii,sortf()); int x=0,y=f[1].y; int t=0; for(int i=1;i<=ii;i++){ t=t+abs(x-f[i].x)+abs(y-f[i].y)+1; sumt[i]=t+f[i].x; sum[i]=sum[i-1]+f[i].s; x=f[i].x;y=f[i].y; if(k<sumt[i]){ cout << sum[i-1]; break; } if(i==ii&&k>=sumt[ii]) cout << sum[i]; } cout << endl; } return 0; }
标签:splay font targe 正是 ace cout names 网格 blank
原文地址:http://www.cnblogs.com/a867686201/p/6344386.html