/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Accepted 1ms 392.0 KiB
#3 Accepted 112ms 2.387 MiB
#4 Time Exceeded ≥1080ms ≥7.277 MiB
#5 Accepted 1ms 328.0 KiB
#6 Time Exceeded ≥1080ms ≥1.672 MiB
#7 Time Exceeded ≥1079ms ≥1.621 MiB
#8 Accepted 966ms 1.637 MiB
#9 Time Exceeded ≥1053ms ≥3.602 MiB
#10 Accepted 65ms 7.73 MiB
#11 Time Exceeded ≥1075ms ≥3.551 MiB
#12 Time Exceeded ≥1076ms ≥3.598 MiB

Code

/*
 *Copyright (c) Swadheen Islam Robi (SIR01)
 *Created on Thu Sep 05 2024 8:30:43 PM
 */
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pie 2*(acos(0.0))
#define yes cout<<"YES\n"
#define no cout<<"NO\n"
#define pb push_back
#define endl "\n"
#define lcm(a,b) (a*b)/(__gcd<ll>(a,b))
#define mod 1000000007
#define srt(v) sort(v.begin(),v.end())
#define rsrt(v) sort(v.rbegin(),v.rend())
#define ALLAHU_AKBAR ios::sync_with_stdio(false); cin.tie(nullptr);

void sir()
{
    // ll n,d,a,b; cin>>n>>d>>a>>b;
    // ll ans;
    // if(n<=d) ans = n*a;
    // else ans = (d*a) + ((n-d)*b);

    // cout<<ans<<endl;
    string S;
    cin >> S;
    
    int Q;
    cin >> Q;

    bool rev = false;
    for (int i = 0; i < Q; ++i) {
        int qt;
        cin >> qt;
        
        if (qt == 1) {
            rev = !rev;
        } 
        else if (qt == 2) {
            int D;
            char C;
            cin >> D >> C;
            
            if (rev) {
                
                D = 3 - D;
            }
            
            if (D == 1) {
                S = C + S;  
            } else {
                S += C; 
            }
        }
    }
    
    if (rev) {
        reverse(S.begin(), S.end());
    }
    
    cout << S << endl;

}

int main() {
    ALLAHU_AKBAR

    ll t = 1;
    cin>>t;
    while(t--)
    {
        sir();
    }
    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:07:03
Judged At
2024-10-03 13:08:58
Judged By
Score
40
Total Time
≥1080ms
Peak Memory
≥7.73 MiB