链接:http://cerberus.delos.com:791/usacoprob2?S=snail&a=uzElkgTaI9d

描述:有障碍的棋盘上的搜索,求从左上角出发最多经过多少个格子。

思路:暴搜

我的实现:

  1 /*
2 ID:zhangyi20
3 PROG:snail
4 LANG:C++
5 */
6 #include <iostream>
7 #include <cstdio>
8 #include <cmath>
9 using namespace std;
10 #define MaxN 120
11 int N,B;
12 int mat[MaxN+5][MaxN+5];//0空地 1障碍 2走过
13 int Dfs(int i,int j,int Dir)//方向:0向上,1向右,2向下,3向左
14 {
15 mat[i][j]=2;
16 int Ret=0,i_=i,j_=j;
17 int tmp1=-1,tmp2=-1;
18 if(Dir==0)//向上
19 {
20 for(i=i-1; ;--i,++Ret)
21 {
22 if(mat[i][j])
23 break;
24 mat[i][j]=2;
25 }
26 if(mat[i][j]==1)//转向
27 {
28 if(mat[i+1][j-1])
29 tmp1=0;
30 else
31 tmp1=Dfs(i+1,j,3);
32 if(mat[i+1][j+1])
33 tmp2=0;
34 else
35 tmp2=Dfs(i+1,j,1);
36 Ret+=max(tmp1,tmp2);
37 }
38 for(i=i+1;i<=i_;++i)
39 mat[i][j]=0;
40 }
41 else if(Dir==1)//向右
42 {
43 for(j=j+1; ;++j,++Ret)
44 {
45 if(mat[i][j])
46 break;
47 mat[i][j]=2;
48 }
49 if(mat[i][j]==1)//转向
50 {
51 if(mat[i-1][j-1])
52 tmp1=0;
53 else
54 tmp1=Dfs(i,j-1,0);
55 if(mat[i+1][j-1])
56 tmp2=0;
57 else
58 tmp2=Dfs(i,j-1,2);
59 Ret+=max(tmp1,tmp2);
60 }
61 for(j=j-1;j>=j_;--j)
62 mat[i][j]=0;
63 }
64 else if(Dir==2)//向下
65 {
66 for(i=i+1; ;++i,++Ret)
67 {
68 if(mat[i][j])
69 break;
70 mat[i][j]=2;
71 }
72 if(mat[i][j]==1)//转向
73 {
74 if(mat[i-1][j-1])
75 tmp1=0;
76 else
77 tmp1=Dfs(i-1,j,3);
78 if(mat[i-1][j+1])
79 tmp2=0;
80 else
81 tmp2=Dfs(i-1,j,1);
82 Ret+=max(tmp1,tmp2);
83 }
84 for(i=i-1;i>=i_;--i)
85 mat[i][j]=0;
86 }
87 else//向左
88 {
89 for(j=j-1; ;--j,++Ret)
90 {
91 if(mat[i][j])
92 break;
93 mat[i][j]=2;
94 }
95 if(mat[i][j]==1)//转向
96 {
97 if(mat[i-1][j+1])
98 tmp1=0;
99 else
100 tmp1=Dfs(i,j+1,0);
101 if(mat[i+1][j+1])
102 tmp2=0;
103 else
104 tmp2=Dfs(i,j+1,2);
105 Ret+=max(tmp1,tmp2);
106 }
107 for(j=j+1;j<=j_;++j)
108 mat[i][j]=0;
109 }
110 return Ret;
111 }
112 int main()
113 {
114 freopen("snail.in","r",stdin);
115 freopen("snail.out","w",stdout);
116 scanf("%d%d",&N,&B);
117 int i,j;
118 char c;
119 for(i=1;i<=B;++i)
120 {
121 do
122 {
123 scanf("%c",&c);
124 }while(c<'A'||c>'Z');
125 scanf("%d",&j);
126 mat[j][c-'A'+1]=1;
127 }
128 for(i=1;i<=N;++i)
129 mat[0][i]=mat[N+1][i]=mat[i][0]=mat[i][N+1]=1;//给地图四周打上障碍
130 mat[1][1]=2;
131 printf("%d\n",max(Dfs(1,1,1),Dfs(1,1,2))+1);
132 return 0;
133 }

[题解]USACO 5.2.1 Snail Trails的更多相关文章

  1. USACO 5.2 Snail Trails

    Snail TrailsAll Ireland Contest Sally Snail likes to stroll on a N x N square grid (1 <n <= 12 ...

  2. 洛谷——P1560 [USACO5.2]蜗牛的旅行Snail Trails

    P1560 [USACO5.2]蜗牛的旅行Snail Trails 题目描述 萨丽·斯内尔(Sally Snail,蜗牛)喜欢在N x N 的棋盘上闲逛(1 < n <= 120). 她总 ...

  3. 洛谷 P1560 [USACO5.2]蜗牛的旅行Snail Trails(不明原因的scanf错误)

    P1560 [USACO5.2]蜗牛的旅行Snail Trails 题目描述 萨丽·斯内尔(Sally Snail,蜗牛)喜欢在N x N 的棋盘上闲逛(1 < n <= 120). 她总 ...

  4. [题解]USACO 1.3 Ski Course Design

    Ski Course Design Farmer John has N hills on his farm (1 <= N <= 1,000), each with an integer ...

  5. [题解]USACO 1.3 Wormholes

    Wormholes Farmer John's hobby of conducting high-energy physics experiments on weekends has backfire ...

  6. 洛谷 P1560 [USACO5.2]蜗牛的旅行Snail Trails

    题目链接 题解 一看题没什么思路.写了个暴力居然可过?! Code #include<bits/stdc++.h> #define LL long long #define RG regi ...

  7. [USACO5.2]蜗牛的旅行Snail Trails(有条件的dfs)

    题目描述 萨丽·斯内尔(Sally Snail,蜗牛)喜欢在N x N 的棋盘上闲逛(1 < n <= 120). 她总是从棋盘的左上角出发.棋盘上有空的格子(用“.”来表示)和B 个路障 ...

  8. 题解 [USACO Mar08] 奶牛跑步

    [USACO Mar08] 奶牛跑步 Description Bessie准备用从牛棚跑到池塘的方法来锻炼. 但是因为她懒,她只准备沿着下坡的路跑到池塘,然后走回牛棚. Bessie也不想跑得太远,所 ...

  9. [USACO5.2]Snail Trails

    嘟嘟嘟 一道很水的爆搜题,然后我调了近40分钟…… 错误:输入数据最好用cin,因为数字可能不止一位,所以用scanf后,单纯的c[0]为字母,c[1]数字………………………… #include< ...

随机推荐

  1. 【分享】让prometheus支持PUSH模式,可以使用remote write协议推送数据

    2021-10-21补充: 我通过修改源码来让prometheus支持remote-write,纯属多此一举: --enable-feature=remote-write-receiver这个命令行参 ...

  2. jsp中获取下拉框的value问题

    遇到问题 最近快期末考试了,今天想写一个简单的增删改查项目练练手,可是在刚写增加的时候就出现了问题,"增"一直是最简单的操作,本来自付很快就能写完,可是数据库中对应的下拉框数据一直 ...

  3. nginx配置支持websocket

    前两天折腾了下socketio,部署完发现通过nginx代理之后前端的socket无法和后端通信了,于是暴查一通,最后解决问题: location / { proxy_pass http://127. ...

  4. K8S的安装部署以及基础知识

    Kubernetes(K8S)概述 Kubernetes又称作k8s,是Google在2014年发布的一个开源项目. 最初Google开发了一个叫Borg的系统(现在命名为Omega),来调度近20多 ...

  5. django之js模板插件artTemplate的使用

    安装: 方式1:artTemplate模板源码下载地址:https://aui.github.io/art-template/zh-cn/index.html 方式2:使用node.js进行安装:np ...

  6. 幂等性是数学中的一个概念,表达的是N次变换与1次变换的结果相同

    幂等性是数学中的一个概念,表达的是N次变换与1次变换的结果相同

  7. ESP32:蓝牙BLE控制M3508电机

    ESP32:蓝牙BLE控制M3508电机 先给各位朋友拜个年,祝大家新春快乐,事事顺利,身体健康啊! 还是熟悉的3508,内容概述: ESP32主控 蓝牙BLE通信 使用实时系统(FreeRTOS) ...

  8. 微前端框架 之 qiankun 从入门到源码分析

    封面 简介 从 single-spa 的缺陷讲起 -> qiankun 是如何从框架层面解决 single-spa 存在的问题 -> qiankun 源码解读,带你全方位刨析 qianku ...

  9. 使用JMX Exporter监控Rainbond上的Java应用

    场景 Prometheus 社区开发了 JMX Exporter 用于导出 JVM 的监控指标,以便使用 Prometheus 来采集监控数据.当您的 Java 应用部署在Rainbond上后 可通过 ...

  10. Unsupported major.minor version 52.0报错问题解决方案

    感谢原文:https://blog.csdn.net/wangmaohong0717/article/details/82869359 1.问题描述 工程启动的时候,报错如下: nested exce ...