/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 328.0 KiB
#2 Accepted 2ms 332.0 KiB
#3 Time Exceeded ≥1054ms ≥1.473 MiB
#4 Time Exceeded ≥1056ms ≥1.422 MiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define all(n)  n.begin(),n.end()
#define sz(n) (ll) n.size()
#define endl '\n'
const double PI = 3.14159265358979323846;
const ll mod = 1e9 + 7;


void test_case() {
    string s;
    cin >> s;
    ll q;
    cin >> q;
    while(q--) {
        ll n,d;
        cin >> n;
        if (n == 1) {
            reverse(all(s));
        }
        else {
            cin >> d;
            char c;
            cin >> c;
            if (d == 1) {
                reverse(all(s));
                s.push_back(c);
                reverse(all(s));
            } else {
                s.push_back(c);
            }
        }
    }
    cout << s << endl;
}

int32_t main() {
    //freopen("input.txt","r", stdin);
    //freopen("output.txt","w", stdout);
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    ll t = 1;
    cin >> t;
    while(t--) {
        test_case();
    }
}

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:47:33
Judged At
2024-11-11 03:02:46
Judged By
Score
10
Total Time
≥1056ms
Peak Memory
≥1.473 MiB