zoukankan      html  css  js  c++  java
  • 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 }
    诚者,君子之所守也。
  • 相关阅读:
    原创:一段利用C#2005操作FOXPRO表的函数
    对VS2005的TreeView控件的困惑(或者是建议吧)
    哎呀!实在是巨烦“驱动之家”这个网站!!
    一种Server Application Unavailable错误的解决办法:
    Win7系统下解决VB6.0鼠标滚轮支持
    [分享]关于水晶报表导出到PDF格式的一个注意事项
    mmsPlayer, for android,ios ,wince,windows,wm等
    C#汉字生成拼音
    使用C#读写文件
    如何使PNG图片在IE浏览器实现透明效果
  • 原文地址:https://www.cnblogs.com/SkystarX/p/12285816.html
Copyright © 2011-2022 走看看