PAT甲级1112

来源:互联网 发布:淘宝首页 javascript 编辑:程序博客网 时间:2024/05/22 08:07

1112. Stucked Keyboard (20)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

On a broken keyboard, some of the keys are always stucked. So when you type some sentences, the characters corresponding to those keys will appear repeatedly on screen for k times.

Now given a resulting string on screen, you are supposed to list all the possible stucked keys, and the original string.

Notice that there might be some characters that are typed repeatedly. The stucked key will always repeat output for a fixed k times whenever it is pressed. For example, when k=3, from the string "thiiis iiisss a teeeeeest" we know that the keys "i" and "e" might be stucked, but "s" is not even though it appears repeatedly sometimes. The original string could be "this isss a teest".

Input Specification:

Each input file contains one test case. For each case, the 1st line gives a positive integer k ( 1<k<=100 ) which is the output repeating times of a stucked key. The 2nd line contains the resulting string on screen, which consists of no more than 1000 characters from {a-z}, {0-9} and "_". It is guaranteed that the string is non-empty.

Output Specification:

For each test case, print in one line the possible stucked keys, in the order of being detected. Make sure that each key is printed once only. Then in the next line print the original string. It is guaranteed that there is at least one stucked key.

Sample Input:
3caseee1__thiiis_iiisss_a_teeeeeest
Sample Output:
eicase1__this_isss_a_teest

#include<iostream>#include<string>#include<algorithm>#include<map>using namespace std;string s;int k;bool a[127] = { false };//asciimap<char, int> ma;int main(){cin >> k >> s;for (int i = 0; i < s.size(); i++){ma[s[i]]++;}map<char, int>::iterator it = ma.begin();for (it; it != ma.end(); it++){char c = it->first; int ccount = it->second;if (ccount%k != 0) a[c] = true;//not stuckedelse{int j = 0;while (j < s.size()){int count = 0;while(s[j] == c){j++; count++;}if (count&&count%k != 0) { a[c] = true; break; }else j++;}}}int i = 0;bool print[128] = { false };while(i<s.size()){if (a[s[i]] == false)//stucked{if (!print[s[i]]){cout << s[i];print[s[i]] = true;}s.replace(i, k - 1, "");}i++;}cout << endl << s;return 0;}

0 0