題目地址 : https://leetcode-cn.com/problems/robot-bounded-in-circle/ide
在無限的平面上,機器人最初位於 (0, 0) 處,面朝北方。機器人能夠接受下列三條指令之一:spa
"G":直走 1 個單位
"L":左轉 90 度
"R":右轉 90 度
機器人按順序執行指令 instructions,並一直重複它們。code
只有在平面中存在環使得機器人永遠沒法離開時,返回 true。不然,返回 false。blog
示例 1: 輸入:"GGLLGG" 輸出:true 解釋: 機器人從 (0,0) 移動到 (0,2),轉 180 度,而後回到 (0,0)。 重複這些指令,機器人將保持在以原點爲中心,2 爲半徑的環中進行移動。 示例 2: 輸入:"GG" 輸出:false 解釋: 機器人無限向北移動。 示例 3: 輸入:"GL" 輸出:true 解釋: 機器人按 (0, 0) -> (0, 1) -> (-1, 1) -> (-1, 0) -> (0, 0) -> ... 進行移動。 提示: 1 <= instructions.length <= 100 instructions[i] 在 {'G', 'L', 'R'} 中
解答內存
知足不循環的狀況只有一種 座標有變化 最後方向與最開始方向相反,其他都是循環狀況ci
1 class Solution { 2 public: 3 const int up = 0; 4 const int right = 1; 5 const int down = 2; 6 const int myleft = 3; 7 8 bool isRobotBounded(string instructions) { 9 int x = 0; int y = 0; int direct = up; 10 int count = 0; 11 for (int i = 0; i < instructions.size(); i++) { 12 if (instructions[i] == 'G') { 13 if (direct == up) { 14 y += 1; count++; 15 } 16 else if (direct == down) { 17 y -= 1; count++; 18 } 19 else if (direct == myleft) { 20 x -= 1; count++; 21 } 22 else { 23 x += 1; count++; 24 } 25 26 } 27 else if (instructions[i] == 'L') { 28 direct = (direct + 4 - 1) % 4; 29 30 } 31 else if (instructions[i] == 'R') { 32 direct = (direct + 1) % 4; 33 } 34 } 35 if (x == 0 && y == 0) 36 return true; 37 if (direct != up) 38 return true; 39 40 41 return false; 42 } 43 };
執行用時 : 4 ms, 在Robot Bounded In Circle的C++提交中擊敗了96.40% 的用戶 內存消耗 : 8.4 MB, 在Robot Bounded In Circle的C++提交中擊敗了100.00% 的用戶leetcode
做者:defddr
連接:https://leetcode-cn.com/problems/two-sum/solution/mo-ni-yu-fa-ti-mu-by-defddr/
來源:力扣(LeetCode)
著做權歸做者全部。商業轉載請聯繫做者得到受權,非商業轉載請註明出處。get