Submission #1003127

# Submission time Handle Problem Language Result Execution time Memory
1003127 2024-06-20T06:29:50 Z rahidilbayramli Rice Hub (IOI11_ricehub) C++17
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
#include "ricehub.h"
#define ll long long
#define ld long double
#define vl vector<ll>
#define vi vector<int>
#define pii pair<int, int>
#define pll pair<ll, ll>
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
#define f first
#define s second
#define pb push_back
#define p_b pop_back
using namespace std;
int besthub(int R, int L, int X[], long long B)
{
    int n = R, i, j;
    int h[n+5];
    for(i = 1; i <= n; i++)
        h[i] = X[i-1];
    int res = 0;
    for(i = 1; i <= n; i++)
    {
        int g = 0;
        for(j = i + 1; j <= n; j++){
            g += (h[j] - h[j - 1]);
            if(g > B)
                break;
            res = max(res, j - i + 1);
        }
    }
    return res;
}
int main()
{
    int R, L;
    ll B;
    cin >> R >> L >> B;
    int X[R];
    for(int i = 0; i < R; i++)
        cin >> X[i];
    cout << besthub(R, L, X, B) << "\n";
}

Compilation message

/usr/bin/ld: /tmp/ccu9ljfd.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccMmf3of.o:ricehub.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status