#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;
}
# |
결과 |
실행 시간 |
메모리 |
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 |
- |
# |
결과 |
실행 시간 |
메모리 |
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 |
- |
# |
결과 |
실행 시간 |
메모리 |
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 |
- |