zoukankan      html  css  js  c++  java
  • 洛谷 P3659 [USACO17FEB]Why Did the Cow Cross the Road I G

    //神题目(题目一开始就理解错了)。。。

    题目描述

    Why did the cow cross the road? Well, one reason is that Farmer John's farm simply has a lot of roads, making it impossible for his cows to travel around without crossing many of them.

    奶牛们为什么要穿马路?一个原因只是因为FJ的牧场的路实在是太多了,使得奶牛们每天不得不穿梭在许许多多的马路中央

    FJ's farm is arranged as an N imes NN×N square grid of fields (3 leq N leq 1003N100), with a set of N-1N1 north-south roads and N-1N1 east-west roads running through the interior of the farm serving as dividers between the fields. A tall fence runs around the external perimeter, preventing cows from leaving the farm. Bessie the cow can move freely from any field to any other adjacent field (north, east, south, or west), as long as she carefully looks both ways before crossing the road separating the two fields. It takes her TT units of time to cross a road (0 leq T leq 1,000,0000T1,000,000).

    FJ的牧场可以看作是一块 N imes NN×N 的田地(3le Nle 1003N100),N-1N1 条南北向的道路和 N-1N1 条东西向的道路贯穿整个牧场,同时是每块田野的分界线。牧场的最外面是一圈高大的栅栏以防止奶牛离开牧场。Bessie只要穿过分离两块田野的道路,就可以从任何田野移动到与其相邻的田野里去(北,东,南或西)。当然,Bessie穿过每一条马路都是需要TT 时间的。(0le Tle 1,000,0000T1,000,000)

    One day, FJ invites Bessie to visit his house for a friendly game of chess. Bessie starts out in the north-west corner field and FJ's house is in the south-east corner field, so Bessie has quite a walk ahead of her. Since she gets hungry along the way, she stops at every third field she visits to eat grass (not including her starting field, but including possibly the final field in which FJ's house resides). Some fields are grassier than others, so the amount of time required for stopping to eat depends on the field in which she stops.

    有一天,FJ邀请Bessie来他家下棋,Bessie从牧场的西北角出发,FJ的家在牧场的东南角。因为Bessie在中途可能会饿,所以她每走过三块田野就要停下来,享用她所在田野上的新鲜的牧草(不包括Bessie的出发点,但是可能会包括终点FJ的家),牧场上有些田野的牧草长得比其他地方茂盛,所以Bessie对应的停留时间也会变长。

    Please help Bessie determine the minimum amount of time it will take to reach FJ's house.

    请帮帮Bessie计算出她走到FJ家的最短时间。

    输入输出格式

    输入格式:

    The first line of input contains NN and TT. The next NN lines each contain NN positive integers (each at most 100,000) describing the amount of time required to eat grass in each field. The first number of the first line is the north-west corner.

    接下来 NN 行,每行 NN 个数表示每块田野Bessie需要停留的时间(每块最多不超过100,000100,000),第一行的第一块田野是牧场的西北角

    输出格式:

    Print the minimum amount of time required for Bessie to travel to FJ's house.

    一行一个整数表示Bessie走到FJ家的最短时间

    输入输出样例

    输入样例#1: 复制
    4 2
    30 92 36 10
    38 85 60 16
    41 13 5 68
    20 97 13 80
    输出样例#1: 复制
    31

    说明

    The optimal solution for this example involves moving east 3 squares (eating the "10"), then moving south twice and west once (eating the "5"), and finally moving south and east to the goal.

    对于样例,Bessie先向东走过了三块田野(在“10”停留),再向南走两步,又向西走了一步(在“5”停留),最后向南走一步,再向东走一步到达FJ的家(不用停留),总共时间是15(停留时间)+16(穿马路时间)=31

    感谢@jzqjzq 提供翻译

     

    题目解释:牛可以往回走

    例:    1 ——2——3

      牛可以1->2->1->2;

    就可以类比于牛走一步和走三步(但是走一步时的时间也是加上走3步的时间)

    将所有的方向枚举出来。。。然后。。宽搜?

    没了。。。

    (根本没有洛谷原来的题解麻烦嘛)

     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<cstdlib>
     5 #include<queue>
     6 using namespace std;
     7 int n,v[110][110];
     8 long long dis[110][110],t;
     9 bool vis[110][110];
    10 struct node
    11 {
    12     int x,y;
    13 };
    14 int dx[]={0,0,3,-3,1,1,2,2,-1,-1,-2,-2,0,0,1,-1};
    15 int dy[]={3,-3,0,0,2,-2,1,-1,2,-2,1,-1,1,-1,0,0};
    16 void spfa(int x,int y)
    17 {
    18     queue<node>q;
    19     q.push((node){x,y});
    20     memset(dis,0x7f,sizeof(dis));
    21     dis[x][y]=0; vis[x][y]=1;
    22     do
    23     {
    24     node u=q.front();q.pop();
    25         vis[u.x][u.y]=0;
    26         for(int i=0;i<16;i++)
    27         {    int tx=u.x+dx[i],ty=u.y+dy[i];
    28             if(tx>=1&&tx<=n&&ty>=1&&ty<=n)
    29             {
    30              if(dis[tx][ty]>dis[u.x][u.y]+v[tx][ty]+t*3)
    31             {    
    32                 dis[tx][ty]=dis[u.x][u.y]+v[tx][ty]+t*3;
    33                 if(!vis[tx][ty])
    34                 {
    35                     vis[tx][ty]=1;q.push((node){tx,ty});
    36                     }
    37                 }
    38             }
    39         }
    40     }while(q.size()!=0);
    41 }
    42 int main()
    43 {    ios::sync_with_stdio(false);
    44     cin>>n>>t;
    45     for(int i=1;i<=n;i++)
    46         for(int j=1;j<=n;j++)
    47             cin>>v[i][j];
    48     spfa(1,1);
    49     long long ans;
    50     ans=dis[n][n];//参照题解:牛不可能直接到达,所以得枚举终点3步之内的所有点的值+位移的时间; 
    51     ans=min(ans,dis[n][n-1]+t);
    52     ans=min(ans,dis[n-1][n]+t);
    53     ans=min(ans,dis[n][n-2]+t*2);
    54     ans=min(ans,dis[n-2][n]+t*2);
    55     ans=min(ans,dis[n-1][n-1]+t*2);
    56     printf("%lld",ans);
    57     return 0;
    58 }
    59     
  • 相关阅读:
    第十章、数据库运行维护与优化
    第九章、安全管理
    第八章、数据库后台编程技术
    第七章、高级数据库查询
    第六章、数据库及数据库对象
    第五章、UML与数据库应用系统
    第四章、数据库应用系统功能设计与实施
    struts2标签debug
    SSH框架 more than one namespace has been specificed without a prefix
    Http Status 404
  • 原文地址:https://www.cnblogs.com/Slager-Z/p/7753602.html
Copyright © 2011-2022 走看看