Home Web Front-end HTML Tutorial Codeforces Round #FF (Div. 1)-A,B,C_html/css_WEB-ITnose

Codeforces Round #FF (Div. 1)-A,B,C_html/css_WEB-ITnose

Jun 24, 2016 pm 12:01 PM
round

A:DZY Loves Sequences

I read the wrong question at first. . sad.

The question is very simple and the method is also very simple. Just DP it.

dp[i][0]: The length obtained without any number change to the current position.

dp[i][1]: Go to the current position, change a number, and get the length

But you need to find it once in the forward direction, and then in the reverse direction.

#include<iostream>#include<stdio.h>#include<algorithm>#include<stdlib.h>#include<string.h>using namespace std;#define maxn 110000int dp[maxn][3];int num[maxn];int a[maxn];int n;void dos(int maxx){    memset(dp,0,sizeof(dp));    memset(num,-1,sizeof(num));    for(int i=n; i>=1; i--)    {        if(a[i]<a[i+1])        {            dp[i][0]=dp[i+1][0]+1;        }        else        {            dp[i][0]=1;        }        dp[i][1]=dp[i][0];        num[i]=a[i];        if(a[i]<num[i+1])        {            if(dp[i][1]<dp[i+1][1]+1)            {                dp[i][1]=dp[i+1][1]+1;                num[i]=a[i];            }        }        if(a[i]>=a[i+1])        {            if(dp[i][1]<dp[i+1][0]+1)            {                dp[i][1]=dp[i+1][0]+1;                num[i]=a[i+1]-1;            }        }    }    for(int i=1; i<=n; i++)    {         //cout<<dp[i][0]<<" "<<dp[i][1]<<" "<<num[i]<<endl;        maxx=max(maxx,dp[i][0]);        maxx=max(maxx,dp[i][1]);    }    cout<<maxx<<endl;}int main(){    while(~scanf("%d",&n))    {        for(int i=1; i<=n; i++)        {            scanf("%d",&a[i]);        }        memset(dp,0,sizeof(dp));        memset(num,-1,sizeof(num));        for(int i=1; i<=n; i++)        {            if(a[i]>a[i-1])            {                dp[i][0]=dp[i-1][0]+1;            }            else            {                dp[i][0]=1;            }            dp[i][1]=dp[i][0];            num[i]=a[i];            if(a[i]>num[i-1])            {                if(dp[i][1]<dp[i-1][1]+1)                {                    dp[i][1]=dp[i-1][1]+1;                    num[i]=a[i];                }            }            if(a[i]<=a[i-1])            {                if(dp[i][1]<dp[i-1][0]+1)                {                    dp[i][1]=dp[i-1][0]+1;                    num[i]=a[i-1]+1;                }            }        }        int maxx=-1;        for(int i=1; i<=n; i++)        {            // cout<<dp[i][0]<<" "<<dp[i][1]<<" "<<num[i]<<endl;            maxx=max(maxx,dp[i][0]);            maxx=max(maxx,dp[i][1]);        }        dos(maxx);    }    return 0;}
Copy after login
B: DZY Loves Modification

We can find that when selecting a horizontal row, the size order of the vertical rows remains unchanged, but each vertical row decreases by p .

So we can enumerate and select x horizontal rows and y vertical rows.

#include<iostream>#include<stdio.h>#include<algorithm>#include<stdlib.h>#include<string.h>#include<queue>using namespace std;#define maxn 1100#define LL __int64int mp[maxn][maxn];int hh[maxn];int ll[maxn];LL ph[1100000];LL pl[1100000];priority_queue<int>que;int n,m,k,p;void chu(){    ph[0]=pl[0]=0;    while(!que.empty())que.pop();    for(int i=1;i<=n;i++)    {        que.push(hh[i]);    }    for(int i=1;i<=k;i++)    {        int x=que.top();        que.pop();        ph[i]=ph[i-1]+(LL)x;        x=x-p*m;        que.push(x);    }    while(!que.empty())que.pop();    for(int i=1;i<=m;i++)    {        que.push(ll[i]);    }    for(int i=1;i<=k;i++)    {        int x=que.top();        que.pop();        pl[i]=pl[i-1]+(LL)x;        x=x-p*n;        que.push(x);    }}int main(){    while(~scanf("%d%d%d%d",&n,&m,&k,&p))    {        memset(hh,0,sizeof(hh));        memset(ll,0,sizeof(ll));        for(int i=1;i<=n;i++)        {            for(int j=1;j<=m;j++)            {                scanf("%d",&mp[i][j]);                hh[i]+=mp[i][j];                ll[j]+=mp[i][j];            }        }        chu();        LL ans=pl[k];        for(int i=1;i<=k;i++)        {            LL x=(LL)i*(LL)(k-i);            x=(LL)x*(LL)p;            ans=max(ans,pl[k-i]+ph[i]-x);        }        cout<<ans<<endl;    }    return 0;}
Copy after login
C: DZY Loves Fibonacci Numbers

Mainly two properties:

1, the addition of two Fibonacci numbers It’s still a Fibonacci sequence.

2. According to the first two terms of the Fibonacci sequence, the Fibonacci number at any position and the sum of the Fibonacci sequence of any length can be obtained in O(1) time.

The rest is a simple interval summation problem.

#include<stdio.h>#include<iostream>#include<stdlib.h>#include<string.h>#include<algorithm>#include<vector>#include<math.h>#include<map>#pragma comment(linker, "/STACK:1024000000,1024000000")using namespace std;#define mem(a,b) (memset(a),b,sizeof(a))#define lmin 1#define rmax n#define lson l,(l+r)/2,rt<<1#define rson (l+r)/2+1,r,rt<<1|1#define root lmin,rmax,1#define now l,r,rt#define int_now int l,int r,int rt#define INF 99999999#define LL __int64#define mod 1000000009#define eps 1e-6#define zero(x) (fabs(x)<eps?0:x)#define maxn 330000LL sum[maxn<<2];LL f1[maxn<<2];LL f2[maxn<<2];LL fib[maxn];LL look(int a,int b,int n){    if(n==1)return a;    if(n==2)return b;    return (a*fib[n-2]+b*fib[n-1])%mod;}LL suan(int a,int b,int n){    if(n==1)return a;    if(n==2)return (a+b)%mod;    return ((look(a,b,n+2)-b)%mod+mod)%mod;}void push_up(int_now){    sum[rt]=sum[rt<<1]+sum[rt<<1|1];    sum[rt]=sum[rt]%mod;}void push_down(int_now){    if(f1[rt]!=0)    {        LL ll,rr;        ll=(l+r)/2-l+1;        rr=r-(l+r)/2;        LL x,y;        x=f1[rt];        y=f2[rt];        f1[rt<<1]=(f1[rt<<1]+x)%mod;        f2[rt<<1]=(f2[rt<<1]+y)%mod;        sum[rt<<1]=(sum[rt<<1]+suan(x,y,ll))%mod;        LL px,py;        px=x;py=y;        x=look(px,py,ll+1);        y=look(px,py,ll+2);        //cout<<x<<" "<<y<<" +"<<rr<<endl;        f1[rt<<1|1]=(f1[rt<<1|1]+x)%mod;        f2[rt<<1|1]=(f2[rt<<1|1]+y)%mod;        sum[rt<<1|1]=(sum[rt<<1|1]+suan(x,y,rr))%mod;        f1[rt]=f2[rt]=0;    }}void creat(int_now){    sum[rt]=f1[rt]=f2[rt]=0;    if(l!=r)    {        creat(lson);        creat(rson);        push_up(now);    }    else    {        scanf("%I64d",&sum[rt]);    }}void updata(int ll,int rr,int_now){    if(ll>r||rr<l)return;    if(ll<=l&&rr>=r)    {        f1[rt]+=fib[l-ll+1];        f2[rt]+=fib[l-ll+2];        sum[rt]+=suan(fib[l-ll+1],fib[l-ll+2],r-l+1);        sum[rt]=(sum[rt]+mod)%mod;        f1[rt]=f1[rt]%mod;        f2[rt]=f2[rt]%mod;        return;    }    push_down(now);    updata(ll,rr,lson);    updata(ll,rr,rson);    push_up(now);}LL query(int ll,int rr,int_now){    if(ll>r||rr<l)return 0;   /// cout<<l<<"-"<<r<<" "<<sum[rt]<<endl;    if(ll<=l&&rr>=r)return sum[rt];    push_down(now);    return (query(ll,rr,rson)+query(ll,rr,lson))%mod;}int main(){    fib[1]=1;fib[2]=1;    for(int i=3;i<maxn;i++)    {        fib[i]=fib[i-1]+fib[i-2];        fib[i]=fib[i]%mod;    }    int n,m,k,l,r;    while(~scanf("%d%d",&n,&m))    {        creat(root);        while(m--)        {            scanf("%d%d%d",&k,&l,&r);            if(k==1)updata(l,r,root);            else            {                printf("%I64d\n",query(l,r,root));            }        }    }    return 0;}
Copy after login




Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles