日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

E - Code Parsing CodeForces - 255B(思维)

發布時間:2023/12/15 编程问答 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 E - Code Parsing CodeForces - 255B(思维) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Little Vitaly loves different algorithms. Today he has invented a new algorithm just for you. Vitaly’s algorithm works with string s, consisting of characters “x” and “y”, and uses two following operations at runtime:

Find two consecutive characters in the string, such that the first of them equals “y”, and the second one equals “x” and swap them. If there are several suitable pairs of characters, we choose the pair of characters that is located closer to the beginning of the string.
Find in the string two consecutive characters, such that the first of them equals “x” and the second one equals “y”. Remove these characters from the string. If there are several suitable pairs of characters, we choose the pair of characters that is located closer to the beginning of the string.
The input for the new algorithm is string s, and the algorithm works as follows:

If you can apply at least one of the described operations to the string, go to step 2 of the algorithm. Otherwise, stop executing the algorithm and print the current string.
If you can apply operation 1, then apply it. Otherwise, apply operation 2. After you apply the operation, go to step 1 of the algorithm.
Now Vitaly wonders, what is going to be printed as the result of the algorithm’s work, if the input receives string s.

Input
The first line contains a non-empty string s.

It is guaranteed that the string only consists of characters “x” and “y”. It is guaranteed that the string consists of at most 106 characters. It is guaranteed that as the result of the algorithm’s execution won’t be an empty string.

Output
In the only line print the string that is printed as the result of the algorithm’s work, if the input of the algorithm input receives string s.

Examples
Input
x
Output
x
Input
yxyxy
Output
y
Input
xxxxxy
Output
xxxx
Note
In the first test the algorithm will end after the first step of the algorithm, as it is impossible to apply any operation. Thus, the string won’t change.

In the second test the transformation will be like this:

string “yxyxy” transforms into string “xyyxy”;
string “xyyxy” transforms into string “xyxyy”;
string “xyxyy” transforms into string “xxyyy”;
string “xxyyy” transforms into string “xyy”;
string “xyy” transforms into string “y”.
As a result, we’ve got string “y”.

In the third test case only one transformation will take place: string “xxxxxy” transforms into string “xxxx”. Thus, the answer will be string “xxxx”.

一個模擬題目,但是如果真的正兒八經的模擬肯定會超時。仔細想想到了最后,剩下的字母就是誰多就剩下誰,O(n)的復雜度,代碼如下:

#include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> using namespace std;const int maxx=1e6+10; char s[maxx];int main() {while(scanf("%s",s)!=EOF){int len=strlen(s);int a=0;int b=0;for(int i=0;i<len;i++){if(s[i]=='x') a++;else b++;}int c=a-b;if(c>=0) {while(c--) cout<<'x';cout<<endl;}else{while(c++) cout<<'y';cout<<endl;}} }

努力加油a啊,(o)/~

總結

以上是生活随笔為你收集整理的E - Code Parsing CodeForces - 255B(思维)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。