이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define pii pair<int, int>
#define xx first
#define yy second
#define endl "\n"
ll n, x[100010], g[100010], e[100010], ress;
int main()
{
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin>>n;
for (int i=0; i<n; i++) cin>>x[i]>>g[i]>>e[i];
for (int i=0; i<n; i++)
{
ll trGold=0, trEnergy=0, trDist=0;
for (int j=i; j<n; j++)
{
trDist=x[j]-x[i];
trEnergy+=e[j];
trGold+=g[j];
//cout<<i<<" "<<j<<" "<<trDist<<" "<<trGold<<" "<<trEnergy<<endl;
if (trEnergy>=trDist) ress=max(ress, trGold);
}
}
cout<<ress;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |