/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 392.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 108ms 3.375 MiB
#4 Accepted 26ms 8.18 MiB
#5 Accepted 1ms 532.0 KiB
#6 Accepted 120ms 2.637 MiB
#7 Accepted 114ms 2.492 MiB
#8 Accepted 23ms 1.355 MiB
#9 Accepted 46ms 8.836 MiB
#10 Accepted 69ms 7.746 MiB
#11 Accepted 27ms 3.719 MiB
#12 Accepted 33ms 8.121 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;
				}
				else {
					last += c;
				}
			}
			else {
				if(d == 1){
					last += c;
				}
				else {
					first += c;
				}
			}

		}

	}
	//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 {
		reverse(first.begin(),first.end());
		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:39:04
Judged At
2024-09-05 16:39:04
Judged By
Score
100
Total Time
120ms
Peak Memory
8.836 MiB