Cod sursa(job #2988133)

Utilizator DomnulMilandruMilandru Nicon-David DomnulMilandru Data 3 martie 2023 17:50:33
Problema Arbori de intervale Scor 50
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 2.2 kb
/******************************************************************************

                              Online C++ Compiler.
               Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.

*******************************************************************************/

#include <fstream>
#include <vector>
using namespace std;
ifstream fin("arbint.in");
class OutParser
{
private:
    FILE *fout;
    char *buff;
    int sp;

    void write_ch(char ch)
    {
        if(sp==50000)
        {
            fwrite(buff,1,50000,fout);
            sp=0;
            buff[sp++]=ch;
        }
        else
        {
            buff[sp++]=ch;
        }
    }

public:
    OutParser(const char* name)
    {
        fout=fopen(name,"w");
        buff=new char[50000]();
        sp=0;
    }
    ~OutParser()
    {
        fwrite(buff,1,sp,fout);
        fclose(fout);
    }

    OutParser& operator <<(int vu32)
    {
        if(vu32<=9)
        {
            write_ch(vu32+'0');
        }
        else
        {
            (*this) <<(vu32/10);
            write_ch(vu32%10+'0');
        }
        return *this;
    }

    OutParser& operator <<(long long vu64)
    {
        if(vu64<=9)
        {
            write_ch(vu64+'0');
        }
        else
        {
            (*this) <<(vu64/10);
            write_ch(vu64%10+'0');
        }
        return *this;
    }

    OutParser& operator <<(char ch)
    {
        write_ch(ch);
        return *this;
    }
    OutParser& operator <<(const char *ch)
    {
        while(*ch)
        {
            write_ch(*ch);
            ++ch;
        }
        return *this;
    }
};
OutParser fout("arbint.out");
int n,m,st,dr;
bool q;
vector<int> A;
int main()
{
    fin>>n>>m;
    A.resize(n+1);
    for(int i=1;i<=n;i++)
     fin>>A[i];
    for(int i=0;i<m;i++)
    {
        fin>>q>>st>>dr;
        if(q==0)
        {
            int maxi=-1;
            for(int i=st;i<=dr;i++)
              maxi=max(A[i],maxi);
              fout<<maxi<<'\n';
        }
        else
           A[st]=dr;
    }
    return 0;
}