이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// turmak-_-
#include<bits/stdc++.h>
#define all(v) v.begin(),v.end()
#define sz(a) a.size()
#define nl "\n"
#define IOI return 0;
#define pb push_back
#define ppb pop_back()
#define int long long
#define ull unsigned long long
#define ld long double
#define IOS ios_base :: sync_with_stdio(NULL); cin.tie(0); cout.tie(0);
#define pii pair<int,int>
#define X first
#define Y second
using namespace std;
const int N = (int)1e5 + 7 ;
const int MOD = (int)998244353;
const int INF = (int)1e18 + 7;
const int inf = (int)1e9 + 7;
pii dx[] = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
int x[N],g[N],d[N],p[N],p1[N];
void solve() {
int n;
cin>>n;
int mx = 0;
for(int i=1; i<=n; ++i) {
cin>>x[i]>>g[i]>>d[i];
if(d[i]>=1) mx = max(mx, g[i]);
p[i]=p[i-1] + g[i];
p1[i]=p1[i-1] + d[i];
}
for(int i=1; i<=n; ++i) {
int l = i+1, r = n;
while(l<=r) {
int mid = (l+r)/2;
int j = mid;
if(x[j]-x[i]<=p1[j]-p1[i-1]) {
mx = max(mx, p[j]-p[i-1]);
l = mid+1;
} else {
r = mid-1;
}
}
}
cout<<mx;
}
main() {
IOS
//freopen("cinema.in", "r", stdin);
//freopen("cinema.out", "w", stdout);
int tt=1;
// cin>>tt;
while(tt--) {
solve();
}
IOI
}
컴파일 시 표준 에러 (stderr) 메시지
divide.cpp:54:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
54 | 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... |