Portal --> CF375C

Solution

  一个有趣的事情:题目中有很大的篇幅在介绍如何判断一个位置在不在所围的多边形中

  那么。。给了方法当然就是要用啊

​  首先是不能包含\('B'\),处理方式很简单直接把他当成一个值为\(-inf\)的宝藏即可,这样所有的object就全部可以看成一类了,不需要再额外考虑

  注意到object的总数很少,考虑状压,记\(vis[x][y][st]\)表示当前在\((x,y)\)这个点,射线与路径的交点数量为奇数的object的状态为\(st\),这种局面是否可行,然后对应的开一个\(step[x][y][st]\)表示达到这种局面所需要的最少步数,这个时候。。最短路既视感?

​  反正\(n\)和\(m\)也不大,所以我们可以考虑跑一个最短路,最后枚举一下\(st\),然后用\((x,y)\)为起点位置的状态去更新一下答案就好了

  现在的问题是,如何计算一步移动对object的射线的影响

​  注意到这个射线其实随便选就好了。。所以方便起见,我们可以钦定每个点只看往其左上方延伸的、角度很小很小很小的一条射线就好了(也可以是别的方向啦随意随意,不过角度很小这个比较重要),角度小这个有一个好处就是,因为角度很小所以只有当纵坐标改变的时候才有可能产生交点,然后其他的情况判断就十分简单了

  

  mark:特殊值什么的是个好东西

  mark:没有思路的时候。。可以尝试从描述里面找提示。。?

  

​  代码大概长这个样子

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<cstring>
  4. #include<queue>
  5. using namespace std;
  6. const int N=25,dx[4]={-1,0,1,0},dy[4]={0,1,0,-1},ST=1<<8;
  7. const int inf=1e4;
  8. struct Rec{
  9. int x,y,val;
  10. }a[20];
  11. struct Data{
  12. int x,y,st;
  13. Data(){}
  14. Data(int x1,int y1,int st1){x=x1; y=y1; st=st1;}
  15. };
  16. queue<Data> q;
  17. int vis[N][N][ST],step[N][N][ST],inq[N][N][ST];
  18. char mp[N][N];
  19. int n,m,t,stx,sty,cnt,ans;
  20. int St(int x){return 1<<x-1;}
  21. bool in(int st,int x){return st>>(x-1)&1;}
  22. bool ok(int x,int y){
  23. if (x<1||y<1||x>n||y>m) return false;
  24. return mp[x][y]=='.'||mp[x][y]=='S';
  25. }
  26. bool check(int x,int y,int nwx,int nwy,int id){
  27. if (x==nwx) return false;
  28. if (x==a[id].x&&y<a[id].y) return nwx<x;
  29. if (nwx==a[id].x&&nwy<a[id].y) return x<nwx;
  30. return false;
  31. }
  32. void bfs(){
  33. Data v,u;
  34. int x,y,st,xx,yy,nw;
  35. while (!q.empty()) q.pop();
  36. for (int i=1;i<=n;++i)
  37. for (int j=1;j<=m;++j)
  38. for (int k=0;k<(1<<cnt);++k)
  39. step[i][j][k]=inf,inq[i][j][k]=false;
  40. q.push(Data(stx,sty,0)); inq[stx][sty][0]=true;
  41. step[stx][sty][0]=0;
  42. while (!q.empty()){
  43. x=q.front().x; y=q.front().y; st=q.front().st; q.pop();
  44. vis[x][y][st]=true;
  45. for (int i=0;i<4;++i){
  46. xx=x+dx[i]; yy=y+dy[i];
  47. if (!ok(xx,yy)) continue;
  48. nw=st;
  49. for (int j=1;j<=cnt;++j)
  50. if (check(x,y,xx,yy,j))
  51. nw^=St(j);
  52. if (step[xx][yy][nw]>step[x][y][st]+1){
  53. step[xx][yy][nw]=step[x][y][st]+1;
  54. if (!inq[xx][yy][nw])
  55. q.push(Data(xx,yy,nw)),inq[xx][yy][nw]=true;
  56. }
  57. }
  58. inq[x][y][st]=false;
  59. }
  60. }
  61. void get_ans(){
  62. int tmp;
  63. for (int st=0;st<(1<<cnt);++st){
  64. if (!vis[stx][sty][st]) continue;
  65. tmp=0;
  66. for (int i=1;i<=cnt;++i)
  67. if (in(st,i))
  68. tmp+=a[i].val;
  69. ans=max(ans,tmp-step[stx][sty][st]);
  70. }
  71. }
  72. int main(){
  73. #ifndef ONLINE_JUDGE
  74. freopen("a.in","r",stdin);
  75. #endif
  76. scanf("%d%d\n",&n,&m);
  77. t=0; cnt=0;
  78. for (int i=1;i<=n;++i){
  79. for (int j=1;j<=m;++j){
  80. scanf("%c",&mp[i][j]);
  81. if ('0'<=mp[i][j]&&mp[i][j]<='9'){
  82. a[mp[i][j]-'0'].x=i,a[mp[i][j]-'0'].y=j;
  83. t=max(t,mp[i][j]-'0');
  84. ++cnt;
  85. }
  86. else if (mp[i][j]=='S')
  87. stx=i,sty=j;
  88. }
  89. scanf("\n");
  90. }
  91. for (int i=1;i<=t;++i) scanf("%d",&a[i].val);
  92. for (int i=1;i<=n;++i)
  93. for (int j=1;j<=m;++j)
  94. if (mp[i][j]=='B')
  95. a[++cnt].x=i,a[cnt].y=j,a[cnt].val=-inf;
  96. bfs();
  97. get_ans();
  98. printf("%d\n",ans);
  99. }

【CF375C】Circling Round Treasures的更多相关文章

  1. CF 375C Circling Round Treasures [DP(spfa) 状压 射线法]

    C - Circling Round Treasures 题意: 在一个$n*m$的地图上,有一些障碍,还有a个宝箱和b个炸弹.你从(sx,sy)出发,走四连通的格子.你需要走一条闭合的路径,可以自交 ...

  2. Circling Round Treasures CodeForces - 375C

    C. Circling Round Treasures time limit per test 1 second memory limit per test 256 megabytes input s ...

  3. Codeforces 716A Crazy Computer 【模拟】 (Codeforces Round #372 (Div. 2))

    A. Crazy Computer time limit per test 2 seconds memory limit per test 256 megabytes input standard i ...

  4. Codeforces 716B Complete the Word【模拟】 (Codeforces Round #372 (Div. 2))

    B. Complete the Word time limit per test 2 seconds memory limit per test 256 megabytes input standar ...

  5. 【CF1256】Codeforces Round #598 (Div. 3) 【思维+贪心+DP】

    https://codeforces.com/contest/1256 A:Payment Without Change[思维] 题意:给你a个价值n的物品和b个价值1的物品,问是否存在取物方案使得价 ...

  6. 【JAVA】Math.Round()函数常见问题“四舍5入”

    java.lang.Math.Round()使用时候,处理方式整理,方便以后查找   /**  * 测试函数 2014-01-10  */ public class TestMath {     pu ...

  7. 【Codeforces】Codeforces Round #551 (Div. 2)

    Codeforces Round #551 (Div. 2) 算是放弃颓废决定好好打比赛好好刷题的开始吧 A. Serval and Bus 处理每个巴士最早到站且大于t的时间 #include &l ...

  8. Codeforces 375C Circling Round Treasures - 最短路 - 射线法 - 位运算

    You have a map as a rectangle table. Each cell of the table is either an obstacle, or a treasure wit ...

  9. 【Codeforces】Codeforces Round #373 (Div. 2) -C

    C. Efim and Strange Grade Efim just received his grade for the last test. He studies in a special sc ...

随机推荐

  1. Jmeter接口测试(九)授权

    下面应该是jmeter的授权设置,但是由于本人目前对这块了解还不深,暂时写个标题,以后有时间再来补充,大家可以先看下一篇内容

  2. nginx 日志模块

    ngx_http_log_module.c 数据结构 typedef struct { void **main_conf; void **srv_conf; void **loc_conf;} ngx ...

  3. Markdown分级语法手册

    目录 前言(可以不看) 基本语法(18) 1. 标题:# 2. 无序列表:- 3. 有序列表:1. 4. 斜体:* 5. 粗体:** 6. 加粗斜体:*** 7. 删除线:~~ 8. 分隔线:--- ...

  4. Dubbo背景和简介

    转载出处 Dubbo开始于电商系统,因此在这里先从电商系统的演变讲起. 单一应用框架(ORM) 当网站流量很小时,只需一个应用,将所有功能如下单支付等都部署在一起,以减少部署节点和成本. 缺点:单一的 ...

  5. scrum立会报告+燃尽图(第三周第一次)

    此作业要求参见:https://edu.cnblogs.com/campus/nenu/2018fall/homework/2284 项目地址:https://coding.net/u/wuyy694 ...

  6. tensorflow训练线性回归模型

    tensorflow安装 tensorflow安装过程不是很顺利,在这里记录一下 环境:Ubuntu 安装 sudo pip install tensorflow 如果出现错误 Could not f ...

  7. ansible介绍和安装

    ansible是由 Python 编写的强大的配置管理解决方案,ansible 的特点就在于它的简洁与高效率 ansible与其他的配置管理工具不同点在于:不需要你在想要配置的每个节点上安装自己的组件 ...

  8. jQuery之层次选择器

    层次选择器: 查找子元素, 后代元素, 兄弟元素的选择器1. ancestor descendant 在给定的祖先元素下匹配所有的后代元素2. parent>child 在给定的父元素下匹配所有 ...

  9. QTcpServer实现多客户端连接

    版权声明:若无来源注明,Techie亮博客文章均为原创. 转载请以链接形式标明本文标题和地址: 本文标题:QTcpServer实现多客户端连接     本文地址:https://www.techiel ...

  10. VC的常用调试方法

    前言 VS是非常强大的IDE,所以掌握VSVC的常用方法,将会使得我们找出问题解决问题事半功倍. 目录 VSVC的常用调试方法 前言 1. Watch窗口查看伪变量 2. 查看指针指向的一序列值 3. ...