[leetcode] 816. Ambiguous Coordinates

441 篇文章 0 订阅
284 篇文章 0 订阅

Description

We had some 2-dimensional coordinates, like “(1, 3)” or “(2, 0.5)”. Then, we removed all commas, decimal points, and spaces, and ended up with the string S. Return a list of strings representing all possibilities for what our original coordinates could have been.

Our original representation never had extraneous zeroes, so we never started with numbers like “00”, “0.0”, “0.00”, “1.0”, “001”, “00.01”, or any other number that can be represented with less digits. Also, a decimal point within a number never occurs without at least one digit occuring before it, so we never started with numbers like “.1”.

The final answer list can be returned in any order. Also note that all coordinates in the final answer have exactly one space between them (occurring after the comma.)

Example 1:
Input: "(123)"
Output: ["(1, 23)", "(12, 3)", "(1.2, 3)", "(1, 2.3)"]
Example 2:
Input: "(00011)"
Output:  ["(0.001, 1)", "(0, 0.011)"]
Explanation: 
0.0, 00, 0001 or 00.01 are not allowed.
Example 3:
Input: "(0123)"
Output: ["(0, 123)", "(0, 12.3)", "(0, 1.23)", "(0.1, 23)", "(0.1, 2.3)", "(0.12, 3)"]
Example 4:
Input: "(100)"
Output: [(10, 0)]
Explanation: 
1.0 is not allowed.

Note:

  1. 4 <= S.length <= 12.
  2. S[0] = “(”, S[S.length - 1] = “)”, and the other elements in S are digits.

分析

  • 这道题考虑的情况很多,我觉得全部ac比较难,anyway,遇见了就学

In sub functon solve(S)
if S == “”: return []
if S == “0”: return [S]
if S == “0XXX0”: return []
if S == “0XXX”: return [“0.XXX”]
if S == “XXX0”: return [S]
return [S, “X.XXX”, “XX.XX”, “XXX.X”…]

  • 总体思路是遍历出各种组合,然后判断

代码

class Solution {
public:
    vector<string> ambiguousCoordinates(string S) {
        vector<string> res;
        int n=S.size();
        for(int i=1;i<n-2;i++){
            vector<string> A=solve(S.substr(1,i)), B=solve(S.substr(i+1,n-1-(i+1)));
            for(auto a:A){
                for(auto b:B){
                    res.push_back("("+a+", "+b+")");
                }
            }
        }
        return res;
    }
    
    vector<string> solve(string s){
        int n=s.size();
        if(n==0||(n>1&&s[0]=='0'&&s[n-1]=='0')) return {};
        if(n>1&&s[0]=='0') return {"0."+s.substr(1)};
        if(n==1||s[n-1]=='0') return {s};
        vector<string> res={s};
        for(int i=1;i<n;i++){
            res.push_back(s.substr(0,i)+'.'+s.substr(i));
        }
        return res;
    }
};

参考文献

816. Ambiguous Coordinates

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值