Submission #17469

# Submission time Handle Problem Language Result Execution time Memory
17469 2015-12-18T17:19:12 Z ZiyaZa Divide and conquer (IZhO14_divide) C++
0 / 100
0 ms 2760 KB
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
    cin.tie();
    ios_base::sync_with_stdio(false);
    freopen ("divide.in","r",stdin);
    freopen ("divide.out","w",stdout);
    int n,x[100010],g[100010],d[100010],i,j,sg=0,sg1,s=0,s1,ans=0;
    cin>>n;
    for (i=0;i<n;i++)
    {
        cin>>x[i]>>g[i]>>d[i];
        s+=d[i];
        sg+=g[i];
    }
    for (i=0;i<n;i++)
    {
        s1=s;
        sg1=sg;
        for (j=n-1;j>=i;j--)
        {
            if (i==j || (x[j]-x[i]<=s1))
            {
                ans=max(ans,sg1);
            }
            s1-=d[j];
            sg1-=g[j];
        }
        s-=d[i];
        sg-=g[i];
    }
    cout<<ans<<endl;
    return 0;
}
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 2760 KB open (syscall #2) was called by the program (disallowed syscall)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 2756 KB open (syscall #2) was called by the program (disallowed syscall)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 2760 KB open (syscall #2) was called by the program (disallowed syscall)
2 Halted 0 ms 0 KB -