题解 | #火车进站#

火车进站

https://www.nowcoder.com/practice/97ba57c35e9f4749826dc3befaeae109

#include <bits/stdc++.h>
#include <vector>
using namespace std;
vector<vector<int>> res;
void backtrack(int N, vector<int>& inSeq, vector<int>& outSeq, stack<int>& station, int index){
    if(outSeq.size() == N){
        res.push_back(outSeq);
        return;
    }
    //入
    if (index < N) {
        int inTrain = inSeq[index];
        station.push(inTrain);
        backtrack(N, inSeq, outSeq, station, index + 1);
        station.pop();
    }

    //出
    if(!station.empty()){
        int top = station.top();
        outSeq.push_back(top);
        station.pop();
        backtrack(N, inSeq, outSeq, station, index);
        station.push(top);
        outSeq.pop_back();
    }
}
int main() {
    int n;
    cin >> n;
    int x;
    vector<int> inSeq;
    vector<int> outSeq;
    stack<int> station;
    while(cin >> x){
        inSeq.push_back(x);
    }
    backtrack(n, inSeq, outSeq, station, 0);
    sort(res.begin(), res.end());
    for(auto &i : res){
        for(auto &j : i){
            cout << j << " ";
        }
        cout << endl;
    }

    return 0;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

2024-12-06 10:44
东北财经大学 运营
在拧螺丝的西红柿很热情:工作量数据化,你的实习我只看到了一个30%,比如总浏览量十万加,同比增长20%,用户复购率达到70%等等,自己根据你当时的工作情况挖掘吧
点赞 评论 收藏
分享
2024-12-25 09:09
四川师范大学 运营
下北泽沼气能源公司HR_田所浩二:个人比较在意wlb,不喜欢生活让步于生活,所以坚定选Walmart
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务