이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define pii pair<int, pair<int,int> >
#define x first
#define y second.first
#define z second.second
using namespace std;
int n;
pii a[100005];
main(){
cin>>n;
for(int k=1;k<=n;k++){
int a1,b,c;
cin>>a1>>b>>c;
a[k]={a1,{b,c}};
}
int l=1;
int pos=a[1].x,val=0;
int ans=a[1].y,sc=a[1].z;
int pas=ans;
for(int r=1;r<=n;r++){
if(r!=1){
ans+=a[r].y;
sc+=a[r].z;
val=a[r].x-pos;
}
while(l<=r && sc<val){
ans-=a[l].y;
sc-=a[l].z;
pos=a[l+1].x;
val=max((int)0,a[r].x-pos);
l++;
}
pas=max(pas,ans);
}
cout<<pas;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
divide.cpp:10:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main(){
^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |