1112 Stucked Keyboard (20 分)
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:
3
caseee1__thiiis_iiisss_a_teeeeeest
Sample Output:
ei
case1__this_isss_a_teest
#include<iostream>
#include<string>
#include<vector>
#include<unordered_map>
using namespace std;
int main(){
unordered_map<char,int> m;
vector<int> book(256,0);
vector<int> sure(256,0);
int k;
cin >> k;
string str;
cin >> str;
char pre = str[0];
int cnt = 1;
for(int i = 1;i < str.length();i++){
if(str[i]==pre){
cnt++;
}else{
if(cnt%k!=0){
sure[pre] = 1;
}
cnt = 1;
}
if(cnt%k==0){
m[pre]=1;
}
pre = str[i];
}
for(int i = 0;i < str.length();i++){
if(sure[str[i]]==1){
m[str[i]] = 0;
}
}
for(int i = 0;i < str.size();i++){
if(m[str[i]]==1&&book[str[i]]==0){
cout << str[i];
book[str[i]]=1;
}
}
cout << endl;
for(int i = 0;i < str.length();i++){
if(m[str[i]]==1){
cout << str[i];
i += k-1;
}else{
cout << str[i];
}
}
}
本文介绍了一种算法,用于解决键盘中某些按键卡住导致字符重复输入的问题。通过分析屏幕上的字符串,算法能识别出可能卡住的按键及其原始输入,确保即使在按键重复输出固定次数的情况下也能正确解析。
5026

被折叠的 条评论
为什么被折叠?



