답안 #724758

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
724758 2023-04-15T23:11:30 Z Yell0 쌀 창고 (IOI11_ricehub) C++17
0 / 100
2 ms 468 KB
#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
const int MN=1e5+2;

int besthub(int R,int L,int X[],ll B) {
  int ans=1;
  ll cost=0;
  for(int l=0,r=0;r<R;++r) {
    cost+=X[r]-X[(l+r-1)/2];
    while(cost>B) {
      cost-=X[(l+r)/2+1]-X[l];
      ++l;
    }
    ans=max(ans,r-l+1);
  }
  return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Incorrect 1 ms 312 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
3 Correct 1 ms 212 KB Output is correct
4 Correct 0 ms 212 KB Output is correct
5 Incorrect 1 ms 308 KB Output isn't correct
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 468 KB Output isn't correct
2 Halted 0 ms 0 KB -