zoukankan      html  css  js  c++  java
  • 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] 

  • 相关阅读:
    5.4、获取对象信息
    5.3、继承和多态
    JS基础-组成
    js定时器
    js 原型链,继承,闭包,内存,泄露
    flex 布局
    点击导出table表格
    图片利用 new Image()预加载原理 和懒加载的实现原理
    js控制style样式
    自定义指令的用法
  • 原文地址:https://www.cnblogs.com/JSZX11556/p/4338073.html
Copyright © 2011-2022 走看看