zoukankan      html  css  js  c++  java
  • Musical Theme poj1743(后缀数组)

    Musical Theme
    Time Limit: 1000MS   Memory Limit: 30000K
    Total Submissions: 16757   Accepted: 5739

    Description

    A musical melody is represented as a sequence of N (1<=N<=20000)notes that are integers in the range 1..88, each representing a key on the piano. It is unfortunate but true that this representation of melodies ignores the notion of musical timing; but, this programming task is about notes and not timings. 
    Many composers structure their music around a repeating &qout;theme&qout;, which, being a subsequence of an entire melody, is a sequence of integers in our representation. A subsequence of a melody is a theme if it: 
    • is at least five notes long 
    • appears (potentially transposed -- see below) again somewhere else in the piece of music 
    • is disjoint from (i.e., non-overlapping with) at least one of its other appearance(s)

    Transposed means that a constant positive or negative value is added to every note value in the theme subsequence. 
    Given a melody, compute the length (number of notes) of the longest theme. 
    One second time limit for this problem's solutions! 

    Input

    The input contains several test cases. The first line of each test case contains the integer N. The following n integers represent the sequence of notes. 
    The last test case is followed by one zero. 

    Output

    For each test case, the output file should contain a single line with a single integer that represents the length of the longest theme. If there are no themes, output 0.

    Sample Input

    30
    25 27 30 34 39 45 52 60 69 79 69 60 52 45 39 34 30 26 22 18
    82 78 74 70 66 67 64 60 65 80
    0
    

    Sample Output

    5

     1 #include <iostream>
     2 #include <stdio.h>
     3 #include <string.h>
     4 using namespace std;
     5 #define N 20001
     6 int a[N],c[N],d[N],e[N],sa[N],height[N],n,b[N],m;
     7 int cmp(int *r,int a,int b,int l)
     8 {
     9     return r[a]==r[b]&&r[a+l]==r[b+l];
    10 }
    11 void da()
    12 {
    13     int i,j,p,*x=c,*y=d,*t;
    14     for(i=0;i<m;i++)b[i]=0;
    15     for(i=0; i<n; i++)b[x[i]=a[i]]++;
    16     for(i=1; i<m; i++)b[i]+=b[i-1];
    17     for(i=n-1; i>=0; i--)sa[--b[x[i]]]=i;
    18     for(j=1,p=1; p<n; j*=2,m=p)
    19     {
    20         for(p=0,i=n-j; i<n; i++)y[p++]=i;
    21         for(i=0; i<n; i++)if(sa[i]>=j)y[p++]=sa[i]-j;
    22         for(i=0; i<n; i++)e[i]=x[y[i]];
    23         for(i=0;i<m;i++)b[i]=0;
    24         for(i=0; i<n; i++)b[e[i]]++;
    25         for(i=1; i<m; i++)b[i]+=b[i-1];
    26         for(i=n-1; i>=0; i--)sa[--b[e[i]]]=y[i];
    27         for(t=x,x=y,y=t,p=1,x[sa[0]]=0,i=1; i<n; i++)
    28             x[sa[i]]=cmp(y,sa[i-1],sa[i],j)?p-1:p++;
    29     }
    30 }
    31 void callheight()
    32 {
    33     int i,j,k=0;
    34     b[0]=0;
    35     for(i=1; i<n; i++)b[sa[i]]=i;
    36     n--;
    37     for(i=0; i<n; height[b[i++]]=k)
    38         for(k?k--:0,j=sa[b[i]-1]; a[i+k]==a[j+k]; k++);
    39 }
    40 bool check(int mid)
    41 {
    42     int ma,mi,i=2;
    43     while(1)
    44     {
    45         while(i<n&&height[i]<mid)i++;
    46         if(i>=n)return 0;
    47         mi=ma=sa[i-1];
    48         while(i<n&&height[i]>=mid)
    49         {
    50             ma=ma>sa[i]?ma:sa[i];
    51             mi=mi<sa[i]?mi:sa[i];
    52             i++;
    53         }
    54         if(ma-mi>=mid)return 1;
    55     }
    56 }
    57 int main()
    58 {
    59     int i,l,r;
    60     while(scanf("%d",&n)&&n)
    61     {
    62         scanf("%d",&a[0]);
    63         for(i=1; i<n; i++)scanf("%d",&a[i]),a[i-1]=a[i]-a[i-1]+88,m=m<a[i-1]?a[i-1]:m;
    64         m++;
    65         a[n-1]=0;
    66         da();
    67         callheight();
    68         l=4,r=n/2;
    69         while(l<=r)
    70         {
    71             int mid=(l+r)>>1;
    72             if(check(mid))
    73                 l=mid+1;
    74             else r=mid-1;
    75         }
    76        l=l>4?l:0;
    77        printf("%d
    ",l);
    78     }
    79 
    80 }
    View Code
  • 相关阅读:
    文本框样式
    flash载入xml不显示中文之谜
    日期 时间 正则表达式
    .NET对象生命周期小结
    Python标准库12 数学与随机数 (math包,random包)
    CXF 4 应用开发
    CXF 2
    CXF 3
    MyEclipse提示键配置、提示快捷键、提示背景色、关键字颜色、代码显示
    CXF 5参考资料
  • 原文地址:https://www.cnblogs.com/ERKE/p/3593767.html
Copyright © 2011-2022 走看看