• Programming Pattern


    Programmers often have a preference among program constructs. For example, some may prefer if(0==a), while others may prefer if(!a). Analyzing such patterns can help to narrow down a programmer's identity, which is useful for detecting plagiarism.

    Now given some text sampled from someone's program, can you find the person's most commonly used pattern of a specific length?

    Input Specification:

    Each input file contains one test case. For each case, there is one line consisting of the pattern length N (1), followed by one line no less than N and no more than 1048576 characters in length, terminated by a carriage return  . The entire input is case sensitive.

    Output Specification:

    For each test case, print in one line the length-N substring that occurs most frequently in the input, followed by a space and the number of times it has occurred in the input. If there are multiple such substrings, print the lexicographically smallest one.

    Whitespace characters in the input should be printed as they are. Also note that there may be multiple occurrences of the same substring overlapping each other.

    Sample Input 1:

    4
    //A can can can a can.
    
     

    Sample Output 1:

     can 4
    
     

    Sample Input 2:

    3
    int a=~~~~~~~~~~~~~~~~~~~~~0;
    
     

    Sample Output 2:

    ~~~ 19
     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 typedef long long ll;
     4 typedef unsigned long long ull;
     5 const ull B=100000007;
     6 int N;
     7 string str;
     8 int mp[10000100];
     9 bool lower(int i,int j)
    10 {
    11     for(int t=0;t<N;t++)
    12         if(str[i+t]!=str[j+t])return str[i+t]<str[j+t];
    13     return true;
    14 }
    15 int main()
    16 {
    17     cin>>N;cin.ignore();
    18     getline(cin,str);
    19     ull hash=0;
    20     for(int i=0;i<N;i++)
    21     {
    22         hash=hash*B+str[i];
    23     }
    24     int len=str.length();
    25     ull t=1;
    26     for(int i=0;i<N;i++)t*=B;
    27     int ans=0;vector<int> index;index.clear();
    28     for(int i=0;i+N<=len;i++)
    29     {
    30         int times=++mp[hash%10000007];
    31         if(times>ans){index.clear();index.push_back(i);}
    32         else if(times==ans){index.push_back(i);}
    33         ans=max(ans,times);
    34         if(i+N<len)hash=hash*B+str[i+N]-str[i]*t;
    35     }
    36     int ilen=index.size();
    37     int ansidex=-1;
    38     for(int k=0;k<ilen;k++)
    39     {
    40         int i=index[k];
    41         if(ansidex==-1||lower(i,ansidex))ansidex=i;
    42     }
    43     for(int i=ansidex;i<ansidex+N;i++)cout<<str[i];
    44     cout<<" "<<ans<<endl;
    45     return 0;
    46 }
    诚者,君子之所守也。
  • 相关阅读:
    oracle中 start with .. connect by prior.. 用法简介
    Java中com.jcraft.jsch.ChannelSftp讲解
    linux修改系统时间和linux查看时区、修改时区的方法
    map.containsKey
    Struts2中struts.multipart.maxSize配置
    oracle定时器job的使用
    java的System.getProperty()方法可以获取的值
    夜间模式的开启与关闭,父模板的制作
    开始Flask项目
    完成登录与注册页面的前端
  • 原文地址:https://www.cnblogs.com/SkystarX/p/12285816.html
Copyright © 2020-2023  润新知