Codeforces 106 D Treasure Island

举报
Linux猿 发表于 2021/08/05 01:12:24 2021/08/05
【摘要】 题目链接~~> 做题感悟:这题做着很有感觉,从超时一直优化改到AC。 解题思路:                 这题如果不预先处理图的话,单纯的模拟肯定超时,so ~需要预先处理图,因为向 N 和 S 是 y 不变,x 变化,向 W 和 E x 不变 ,变 y . 这样可以用两个 ...

题目链接~~>

做题感悟:这题做着很有感觉,从超时一直优化改到AC。

解题思路:

                这题如果不预先处理图的话,单纯的模拟肯定超时,so ~需要预先处理图,因为向 N 和 S 是 y 不变,x 变化,向 W 和 E x 不变 ,变 y . 这样可以用两个 vector 然后分别存x 不变的时候 y 的值,y 不变的时候 x 的值,这样查询的时候直接固定 x ,或者 y 然后找变化的。复杂度为最大为 26 * 1000 * 1000 。

代码:


  
  1. #include<iostream>
  2. #include<sstream>
  3. #include<map>
  4. #include<cmath>
  5. #include<fstream>
  6. #include<queue>
  7. #include<vector>
  8. #include<sstream>
  9. #include<cstring>
  10. #include<cstdio>
  11. #include<stack>
  12. #include<bitset>
  13. #include<ctime>
  14. #include<string>
  15. #include<iomanip>
  16. #include<algorithm>
  17. using namespace std ;
  18. #define INT __int64
  19. const int INF = 99999999 ;
  20. const double esp = 0.0000000001 ;
  21. const double PI = acos(-1.0) ;
  22. const int MY = 100000 + 5 ;
  23. const int MX = 1000 + 5 ;
  24. int n ,m ,num ,Q ,Gnum ;
  25. char s[MX][MX] ,s1[50] ;
  26. int dx[4] = {-1 ,1 ,0 ,0} ,dy[4] = {0 ,0 ,-1 ,1} ; // N ,S ,W ,E
  27. vector<int>Gx[MX] ,Gy[MX] ;
  28. struct node // 存景点
  29. {
  30. char ch ;
  31. int x ,y ;
  32. }T[50] ;
  33. struct move // 各条指令
  34. {
  35. int dir ,step ;
  36. }Move[MY] ;
  37. void input()
  38. {
  39. int x ,y ;
  40. num = 0 ; // 记录景点个数
  41. Gnum = 0 ;// 记录 # 的个数
  42. for(int i = 0 ;i < n ; ++i)
  43. {
  44. scanf("%s" ,s[i]) ;
  45. for(int j = 0 ;j < m ; ++j)
  46. if(s[i][j] >= 'A' && s[i][j] <= 'Z') // 是景点
  47. {
  48. T[num].x = i ;
  49. T[num].y = j ;
  50. T[num++].ch = s[i][j] ;
  51. }
  52. else if(s[i][j] == '#') // 是墙
  53. {
  54. Gx[i].push_back(j) ;
  55. Gy[j].push_back(i) ;
  56. }
  57. }
  58. scanf("%d" ,&Q) ;
  59. char ch ;
  60. for(int i = 0 ;i < Q ; ++i) // 输入指令
  61. {
  62. cin>>ch>>x ;
  63. if(ch == 'N')
  64. y = 0 ;
  65. else if(ch == 'S')
  66. y = 1 ;
  67. else if(ch == 'W')
  68. y = 2 ;
  69. else y = 3 ;
  70. Move[i].dir = y ; // 记录指令
  71. Move[i].step = x ;
  72. }
  73. }
  74. bool solve(int x ,int y)
  75. {
  76. int sx ,sy ,dir ,step ,mt ;
  77. for(int i = 0 ;i < Q ; ++i) // 一次执行 Q 条指令
  78. {
  79. dir = Move[i].dir ;
  80. step = Move[i].step ;
  81. if(!dir) // N y 不变 上
  82. {
  83. sx = x + dx[dir]*step ;
  84. mt = Gy[y].size() ;
  85. if(sx < 0 || sx >= n) return false ; // 出界
  86. for(int j = 0 ;j < mt ; ++j)
  87. if(Gy[y][j] >= sx && Gy[y][j] < x)
  88. return false ;
  89. x = sx ;
  90. }
  91. else if(dir == 1) // S 下 y 不变
  92. {
  93. sx = x + dx[dir]*step ;
  94. mt = Gy[y].size() ;
  95. if(sx < 0 || sx >= n) return false ; // 出界
  96. for(int j = 0 ;j < mt ; ++j)
  97. if(Gy[y][j] > x && Gy[y][j] <= sx)
  98. return false ;
  99. x = sx ;
  100. }
  101. else if(dir == 2) // W 左 x 不变
  102. {
  103. sy = y + dy[dir]*step ;
  104. mt = Gx[x].size() ;
  105. if(sy < 0 || sy >= m) return false ;
  106. for(int j= 0 ;j < mt ; ++j)
  107. if(Gx[x][j] < y && Gx[x][j] >= sy)
  108. return false ;
  109. y = sy ;
  110. }
  111. else // E 右 x 不变
  112. {
  113. sy = y + dy[dir]*step ;
  114. mt = Gx[x].size() ;
  115. if(sy < 0 || sy >= m) return false ;
  116. for(int j= 0 ;j < mt ; ++j)
  117. if(Gx[x][j] > y && Gx[x][j] <= sy)
  118. return false ;
  119. y = sy ;
  120. }
  121. }
  122. return true ;
  123. }
  124. int main()
  125. {
  126. while(~scanf("%d%d" ,&n ,&m))
  127. {
  128. input() ;
  129. int nx = 0 ;
  130. bool flag = false ;
  131. for(int i = 0 ;i < num ; ++i)
  132. if(solve(T[i].x ,T[i].y)) // 判断此起点是否合法
  133. {
  134. flag = true ;
  135. s1[nx++] = T[i].ch ;
  136. }
  137. if(flag)
  138. {
  139. s1[nx] = '\0' ;
  140. stable_sort(s1 ,s1+nx) ;
  141. cout<<s1<<endl ;
  142. }
  143. else cout<<"no solution"<<endl ;
  144. for(int i = 0 ;i < Gnum ; ++i)
  145. {
  146. Gx[i].clear() ;
  147. Gy[i].clear() ;
  148. }
  149. }
  150. return 0 ;
  151. }

文章来源: blog.csdn.net,作者:Linux猿,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/nyist_zxp/article/details/39578711

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。