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 emight 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_. 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

 思路 :  要求出坏键,可以遍历一遍,在遍历的过程中,如果出现重复的字符串,如果是坏键,那么重复的个数一定是k的整数倍 . 故可设置map来标记是否为坏串,在输出原串时,若是坏键,则跳过坏键个数进行输出。

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define ll long long
#define vi vector
#define pii pair
#define x first
#define y second
int k;
string s;
map mp1,mp2;
int main()
{
    cin>>k>>s;
    int len=s.length();
    for(int i=0;i

 

你可能感兴趣的:(PAT甲级(Advanced,Level))