답안 #719544

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
719544 2023-04-06T09:32:49 Z mseebacher 쌀 창고 (IOI11_ricehub) C++17
0 / 100
1000 ms 468 KB
#include <bits/stdc++.h> 

using namespace std;

int besthub(int R, int L, int x[], long long B)
{
	vector<long long> pref(R+1,0);
	for(int i = 0;i<R;i++){
		pref[i+1] = pref[i]+x[i];
	}
	int ans = 0;
	for(int i = 0;i<R;i++){
		for(int j = 0;j<R;j++){
			int mid = (i+j) >> 1;
			long long cost = (long long)(mid-i)*x[mid]*1LL-pref[mid]-pref[i]; // Seg unten
			cost += (long long)pref[j+1]-pref[mid+1]-(j-mid)*x[mid]*1LL; // seg oben
			if(cost <= B) ans = max(ans,j-i+1);
		}
	}
  return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 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 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1042 ms 468 KB Time limit exceeded
2 Halted 0 ms 0 KB -