This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <cstdio>
typedef long long ll;
#define putmin(a,b) ((a)>(b)?(a)=(b):1)
ll calc(ll LH,ll S,ll D,ll L,ll B) {
ll R = 0;
if (S > LH*2) R += (S-LH*2)/(2*LH-L);
S -= R*(2*LH-L);
if (S > LH*2) R++,S -= (2*LH-L);
if (S > LH) D += (++R)*B;
else {
D += R*B-LH; R++;
if (D <= 0) return R;
D += B;
}
if (D > LH*2) { R += (D-LH*2)/(2*LH-B); D -= (D-LH*2)/(2*LH-B)*(2*LH-B); }
return R+1+(D>LH*2);
}
int main() {
ll LH,S,D,L,B,res = 99999999999999999LL;
scanf("%lld%lld%lld%lld%lld",&LH,&S,&D,&L,&B);
putmin(res,calc(LH,S,D,L,B));
putmin(res,calc(LH,D,S,B,L));
printf("%lld",res);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |