Submission #543180

#TimeUsernameProblemLanguageResultExecution timeMemory
543180status_codingHorses (IOI15_horses)C++14
0 / 100
15 ms11476 KiB
#include "horses.h"
#include <bits/stdc++.h>
#define mod 1000000007

using namespace std;

struct segS
{
    long long cnt=0, val=0;

    segS operator+(segS b)
    {
        segS ans;

        ans.val = max( val, (cnt * b.val)%mod );
        ans.cnt = (cnt * b.cnt) % mod;

        return ans;
    }
};

int n;
long long x[100005], y[100005];
vector<segS> seg;

void upd(int i, int st, int dr, int p)
{
    if(st == dr)
    {
        seg[p].cnt = x[i];
        seg[p].val = (x[i] * y[i]) % mod;
    }
}

int updateX(int pos, int val)
{
    x[pos]=val;
    upd(pos, 0, n-1, 1);
    return (int)seg[1].val;
}

int updateY(int pos, int val)
{
    y[pos]=val;
    upd(pos, 0, n-1, 1);
    return (int)seg[1].val;
}

int init(int N, int X[], int Y[])
{
    n = N;
    for(int i=0; i<n; i++)
    {
        x[i] = X[i];
        y[i] = Y[i];
    }

    seg.resize(4*n+4);

    for(int i=0;i<n;i++)
        upd(i, 0, n-1, 1);

    return (int)seg[1].val;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...