/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Wrong Answer 1ms 320.0 KiB
#3 Accepted 127ms 3.348 MiB
#4 Accepted 75ms 7.211 MiB
#5 Wrong Answer 2ms 320.0 KiB
#6 Wrong Answer 146ms 2.488 MiB
#7 Wrong Answer 140ms 2.34 MiB
#8 Wrong Answer 27ms 1.043 MiB
#9 Accepted 90ms 7.812 MiB
#10 Accepted 114ms 7.844 MiB
#11 Accepted 37ms 3.66 MiB
#12 Wrong Answer 79ms 7.16 MiB

Code

#include<bits/stdc++.h>
//#include<ext/pb_ds/assoc_container.hpp>
//#include<ext/pb_ds/tree_policy.hpp>

//using namespace __gnu_pbds;
using namespace std;

typedef long long int ll ;
//typedef __int128 lll;
#define pb push_back
#define pinf   2e18
#define ninf   -2e18
#define PI    acos(-1.0)
#define endl  "\n"
#define F first
#define S second

//template <typename T> using o_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

ll gcd (ll a,ll b) {
    if(a%b==0)return b;
    return gcd(b,a%b);
}


int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    //inout() ;

    ll t,i,j ;
    cin>>t ;
    while(t--) {
        string s,fs,ls;
        bool ok=true;
        cin>>s;
        string ss=s;
        reverse(s.begin(),s.end());
        ll q;
        cin>>q;
        while(q--) {
            ll k,l;
            char c;
            cin>>k;
            if(k==1) {
                ok=ok?false:true;
            }
            else {
                cin>>l>>c;
                if(ok) {
                    if(l==1) {
                        fs.push_back(c);
                    }
                    else {
                        ls.push_back(c);
                    }
                }
                else
                {
                    if(l==2) {
                        fs.push_back(c);
                    }
                    else {
                        ls.push_back(c);
                    }
                }
            }
        }
        if(ok){
         for(auto it: fs)cout<<it;
         for(auto it: ss)cout<<it;
         for(auto it: ls)cout<<it;
        }
        else
        {
         for(auto it: ls)cout<<it;
         for(auto it: s)cout<<it;
         for(auto it: fs)cout<<it;
        }
        cout<<'\n';









    }
    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 16:39:27
Judged At
2024-10-03 13:06:36
Judged By
Score
50
Total Time
146ms
Peak Memory
7.844 MiB