/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 536.0 KiB
#2 Accepted 1ms 320.0 KiB
#3 Accepted 117ms 3.375 MiB
#4 Accepted 30ms 8.297 MiB
#5 Accepted 2ms 532.0 KiB
#6 Time Exceeded ≥1096ms ≥1.66 MiB
#7 Accepted 667ms 2.531 MiB
#8 Accepted 97ms 1.379 MiB
#9 Accepted 123ms 8.961 MiB
#10 Accepted 70ms 7.91 MiB
#11 Accepted 100ms 3.988 MiB
#12 Accepted 51ms 8.297 MiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll long long int
void solve(){
	string s;
	cin >> s;
	int q;
	cin >> q;
	bool reversed = false;
	string first= "", last = "";
	while(q--){
		int type;
		cin >> type;
		if(type == 1){
			reversed = !reversed;
		}
		else {
			int d;
			char c;
			cin >> d >> c;
			if(!reversed){
				if(d == 1){
					first = c + first;
				}
				else {
					last += c;
				}
			}
			else {
				if(d == 1){
					last += c;
				}
				else {
					first = c + first;
				}
			}

		}

	}
	//cout << first << " " << last << '\n';
	if(reversed){
		reverse(s.begin(),s.end());
		reverse(last.begin(),last.end());
		reverse(first.begin(),first.end());
		cout << last + s + first << '\n';
	}
	else {
		cout << first + s + last << '\n';
	}
}
int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	int t = 1;
	cin >> t;
	while(t--){
		solve();
	}
	return 0;
}
//dcbaef
//feabcd

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:28:59
Judged At
2024-10-03 13:07:25
Judged By
Score
90
Total Time
≥1096ms
Peak Memory
≥8.961 MiB