USACO Section 5.1 Musical Themes(枚举)

直接枚举O(n^3)会TLE,只要稍微加点优化,在不可能得到更优解时及时退出。其实就是道水题,虽说我提交了6次才过= =..我还太弱了

--------------------------------------------------------------------------

#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cctype>
#define rep(i,r) for(int i=0;i<r;i++)
#define clr(x,c) memset(x,c,sizeof(x))
#define Rep(i,l,r) for(int i=l;i<=r;i++)
using namespace std;
const int maxn=5000;
int x[maxn];
inline int read() {
    
    char c=getchar();
    while(!isdigit(c)) c=getchar();
    
    int x=0;
    while(isdigit(c)) {
        x=x*10+c-'0';
        c=getchar();
    }
    
    return x;
}
int main()
{
    freopen("theme.in","r",stdin);
    freopen("theme.out","w",stdout);
    
    
    int n=read();
    rep(i,n) x[i]=read();
    int ans=0;
    
    rep(i,n) if(i+4+max(5,ans)<n)
        Rep(j,i+max(5,ans),n) if(j+max(5,ans)<n) {
            int a=i,b=j,d=x[i]-x[j];
            while(x[a+1]-x[b+1]==d && b+1<n && a+1<j) { a++; b++; }
            if(a-i+1>=5) ans=max(a-i+1,ans);
        }
    
    cout<<ans<<endl;
    
    return 0;
}

 

-------------------------------------------------------------------------- 

Musical Themes
Brian Dean

A musical melody is represented as a sequence of N (1 <= N <= 5000) 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 "theme", 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!

PROGRAM NAME: theme

INPUT FORMAT

The first line of the input file contains the integer N. Each subsequent line (except potentially the last) contains 20 integers representing the sequence of notes. The last line contains the remainder of the notes, potentially fewer than 20.

SAMPLE INPUT (file theme.in)

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

OUTPUT FORMAT

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 OUTPUT (file theme.out)

5

[The five-long theme is the last five notes of the first line and the first five notes of the second] 

posted @ 2015-03-14 19:21  JSZX11556  阅读(230)  评论(0编辑  收藏  举报