题解

142 条题解

  • -1
    @ 2016-12-28 12:34:34

    #include<iostream>
    #include<cmath>
    using namespace std;
    main()
    {
    int n,m,o,s=0,t,su=0,p1,p2,p3;
    cin>>n>>m>>o;
    int a[n][m],b[n*m],x[n*m],y[n*m];
    for(int i=0;i<n;i++)for(int j=0;j<m;j++){cin>>a[i][j];b[s]=a[i][j],x[s]=i;y[s]=j;s++;}
    for(int i=0;i<n*m;i++)
    {
    for(int j=i+1;j<n*m;j++)
    {
    if(b[j]>b[i])
    {
    t=b[j],b[j]=b[i],b[i]=t;
    t=x[j],x[j]=x[i],x[i]=t;
    t=y[j],y[j]=y[i],y[i]=t;
    t=0;
    }
    }
    }
    o=o-x[0]-1;
    s=0;
    if(o-1-x[0]-1<=0){cout<<0;return 0;}
    while(b[s]>0)
    {
    su+=b[s];
    o--;
    p1=abs(x[s]-x[s+1]);
    p2=abs(y[s]-y[s+1]);
    p3=p1+p2+x[s+1]+1;
    if(p3>=o)break;
    else o-=(p1+p2);
    s++;
    }
    cout<<su;
    return 0;
    }

  • -2
    @ 2017-05-08 08:57:37
    /*
    直接简单贪心+模拟即可
    记录下所有有花生的地方,然后按花生数从大到小排序
    因为题目要求了要先摘多的才能再摘小的
    所以就可以直接贪心选择最大的也是就排序后数组中从前到后考虑
    对于每个点判断一下:
    当前已耗时+采摘时间1+走过去的时间+回到路边的时间 是否满足时间限制
    如果满足就采摘 并更新当前坐标的位置
    不然退出循环输出结果
    */
    #include <iostream>
    #include <cstdio>
    #include <algorithm>
    #include <cstring>
    using namespace std;
    
    struct node
    {
        int x,y,v;
        bool operator < (const node& x) const
        {
            return v>x.v;
        }
    }a[450];
    int n,m;
    int t;
    int k;
    int ans;
    int cost;
    int nowx,nowy;
    
    int cail(int x)
    {
        return abs(a[x].x-nowx)+abs(a[x].y-nowy);
    }
    
    int main()
    {
        cin>>n>>m>>t;
        int v;
        for(int i=1;i<=n;i++)
            for(int j=1;j<=m;j++)
            {
                cin>>v;
                if(v)
                    a[++k]={i,j,v};
            }
        sort(a+1,a+k+1);
        nowy=a[1].y;
        for(int i=1;i<=k;i++)
        {
            if(cost+cail(i)+1+a[i].x<=t)
            {
                ans+=a[i].v;
                cost+=cail(i)+1;
                nowx=a[i].x,nowy=a[i].y;
            }
            else
                break;
        }
        cout<<ans<<endl;
        return 0;
    }
         
    

信息

ID
1120
难度
5
分类
贪心 点击显示
标签
递交数
4922
已通过
1766
通过率
36%
被复制
28
上传者