zoukankan      html  css  js  c++  java
  • PAT 1112 Stucked Keyboard

    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) 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<bits/stdc++.h>
    using namespace std;
    typedef long long ll;
    
    
    int main(){
        int k;
        cin >> k;
        string s;
        cin >> s;
        unordered_map<char,int> mp;
    
        for(int i=0;i < s.size();i++){
            int cnt = 0;
            for(int j=i;j < s.size() && j < i+k;j++){
                if(s[i] == s[j])cnt++;
            }
            if(cnt == k)mp[s[i]] = 1;
        }
        for(int i=0;i < s.size();){
            int cnt = 0;
            for(int j=i;j < s.size() && j < i+k;j++){
                if(s[i] == s[j])cnt++;
            }
            if(cnt < k){mp[s[i]] = 0;i++;}
            else if(cnt == k) i += k;
        }
    
    
        unordered_map<char,int> mmp = mp;
        for(int i=0;i < s.size();i++){
            if(mmp[s[i]]){
                cout << s[i];
                mmp[s[i]] = 0;
            }
        }
    
        cout << endl;
    
        for(auto it=mp.begin();it!=mp.end();it++){
            if(it->second == 1){
                char x = it->first;
                for(int i=0;i < s.size();i++){
                    if(s[i] == x){s.erase(i,k-1);}
                }
            }
        }
    
        cout << s;
    
    
        return 0;
    }

    _unordered_map 不能保证按修改的顺序输出!需要重新按照顺序输出map中的内容。

    但学会了对拍!!

  • 相关阅读:
    堆排序
    快速排序
    hpp头文件与h头文件的区别
    c++_ url
    C++11:POD数据类型
    Android 触摸手势基础 官方文档概览2
    札记:android手势识别,MotionEvent
    强迫自己学习(心态篇),国庆,你准备去哪疯?
    深入理解计算机系统(2.5)---二进制整数的加、减法运算(重要)
    深入理解计算机系统(2.4)---C语言的有符号与无符号、二进制整数的扩展与截断
  • 原文地址:https://www.cnblogs.com/cunyusup/p/10793070.html
Copyright © 2011-2022 走看看