/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Accepted 2ms 320.0 KiB
#3 Time Exceeded ≥1098ms ≥2.477 MiB
#4 Time Exceeded ≥1094ms ≥2.488 MiB

Code

#include <bits/stdc++.h>
using namespace std;
using ll=long long;

void solve() {
    string str;
    cin>>str;
    int q;
    cin>>q;
    deque<char> deq(str.begin(),str.end());

    bool rf=false;
    while(q--){
        int type;
        cin>>type;
        if(type==1){
            reverse(deq.begin(),deq.end());
        }
        else if(type==2){
            int d;cin>>d;
            char c;cin>>c;
            if(d==1){
                deq.push_front(c);
            }
            else{
                deq.push_back(c);
            }

        }
    }
    for(auto ch: deq){
        cout<<ch;
    }
    cout<<endl;

}

int main(){
    int t;
    cin>>t;
    while(t--){
        solve();
    }
return 0;
}

Information

Submit By
Type
Submission
Problem
P1088 Mr. Heart's String Challenge
Contest
Brain Booster #5
Language
C++17 (G++ 13.2.0)
Submit At
2024-09-05 16:14:45
Judged At
2024-11-11 03:01:15
Judged By
Score
10
Total Time
≥1098ms
Peak Memory
≥2.488 MiB