/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Accepted 1ms 324.0 KiB
#3 Accepted 132ms 3.258 MiB
#4 Accepted 77ms 7.598 MiB
#5 Accepted 1ms 532.0 KiB
#6 Accepted 147ms 2.609 MiB
#7 Accepted 137ms 2.027 MiB
#8 Accepted 27ms 1.043 MiB
#9 Accepted 104ms 8.09 MiB
#10 Accepted 127ms 7.855 MiB
#11 Accepted 42ms 3.613 MiB
#12 Accepted 88ms 7.266 MiB

Code

#include<bits/stdc++.h>
#define endl        '\n'
#define F           first
#define S           second
#define pb          push_back
#define yes         cout<<"YES\n"
#define no          cout<<"NO\n"
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define error1(x)   cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v)  for(auto &it: v) cout << it; cout << endl;
using namespace std;
using ll = long long;
using ld = long double;

void solve() {
    string s1;
    cin >> s1;
    deque<char> dq;
    for(auto &i: s1) dq.pb(i);
    ll q;
    cin >> q;
    bool rev = 0;
    short type, d;
    char c;
    while(q--) {
        cin >> type;
        if(type == 1) {
            rev ^= 1;
        }
        else {
            cin >> d >> c;
            if(rev == 0) {
                if(d == 1) {
                    dq.push_front(c);
                }
                else {
                    dq.pb(c);
                }
            }
            else {
                if(d == 2) {
                    dq.push_front(c);
                }
                else {
                    dq.pb(c);
                }
            }
        }
    }
    if(rev) reverse(all(dq));
    coutall(dq);
    return;
}

signed main() {
    ios::sync_with_stdio(false); cin.tie(0);
    int tc = 1;
    cin >> tc;
    for (int t = 1; t <= tc; t++) {
        // cout << "Case " << t << ": ";
        solve();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1088 Mr. Heart's String Challenge
Contest
Brain Booster #5
Language
C++20 (G++ 13.2.0)
Submit At
2024-09-05 15:44:48
Judged At
2024-11-11 03:02:58
Judged By
Score
100
Total Time
147ms
Peak Memory
8.09 MiB