首页 > 其他 > 详细

LC 1585. Check If String Is Transformable With Substring Sort Operations

时间:2020-09-15 10:49:02      阅读:71      评论:0      收藏:0      [点我收藏+]

link
技术分享图片

class Solution {
public:
    bool isTransformable(string s, string t) {
        vector<deque<int>> pos(10);
        for(int i=0;i<s.size();i++){
            pos[s[i]-‘0‘].push_back(i);
        }
        for(char c:t){
            if(pos[c-‘0‘].empty()) return false;
            for(int i=0;i<c-‘0‘;i++){
                if(!pos[i].empty() && pos[i].front()<pos[c-‘0‘].front()) return false;
            }
            pos[c-‘0‘].pop_front();
        }
        return true;
    }
};

LC 1585. Check If String Is Transformable With Substring Sort Operations

原文:https://www.cnblogs.com/FEIIEF/p/13670963.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!