博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HOJ 1009Fat Cat
阅读量:4984 次
发布时间:2019-06-12

本文共 832 字,大约阅读时间需要 2 分钟。

一道暴力题

处理出老鼠到达每个点的时间

用这个时间与猫的位置与这个点的曼哈顿距离取min

再取max就行了

#include 
#include
#include
#include
using namespace std;inline int read(){ int x=0,f=1,ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f;}inline int min(int x,int y){ return x
y?x:y;}inline int cal_abs(int x){ return max(x,-x);}int n,m;int a[100][100];int dis[100][100];int main(){ while(scanf("%d %d",&n,&m)!=EOF){ memset(dis,0x3f,sizeof(dis)); for(int i=0;i
=(cal_abs(s-i)+cal_abs(t-j))) ans=min(ans,max(dis[i][j],cal_abs(s-i)+cal_abs(t-j))); if(ans==0x3f3f3f3f) puts("impossible"); else printf("%d\n",ans); } return 0;}

  

转载于:https://www.cnblogs.com/gcyyzf/p/9720638.html

你可能感兴趣的文章
Robotium源码分析之Instrumentation进阶
查看>>
Android 交错 GridView
查看>>
(2)把BlackBerry作为插件安装到已有的Eclipse中
查看>>
VUE-es6
查看>>
MySQL-5.7 高阶语法及流程控制
查看>>
C++学习笔记(十)——向上造型
查看>>
2017/6/16
查看>>
LeetCode 445——两数相加 II
查看>>
预备作业03 20162308马平川
查看>>
【Java】嵌套For循环性能优化案例
查看>>
面试了一个开发人员
查看>>
软件工程及软件项目开发流程
查看>>
关于android4.3 bluetooth4.0的那些事儿
查看>>
嵌入式成长轨迹14 【嵌入式环境及基础】【Linux下的C编程 上】【gcc、gdb和GNU Make】...
查看>>
C语言讲义——变量的输出
查看>>
shell脚本 ----每天学一点shell
查看>>
FZU2150 :Fire Game (双起点BFS)
查看>>
php_常用操作_读取文件_数据库操作
查看>>
Linux中GCC源码编译安装
查看>>
equals与==关于Object覆盖和重载问题
查看>>