# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
684346 | 2023-01-21T00:06:54 Z | speedyArda | 쌀 창고 (IOI11_ricehub) | C++14 | 3 ms | 1108 KB |
#include "ricehub.h" #include "bits/stdc++.h" using namespace std; using ll = long long; int besthub(int R, int L, int X[], long long B) { ll pref[R]; ll Big[R]; for(int i = 0; i < R; i++) { if(i > 0) pref[i] = pref[i - 1]; pref[i] += X[i]; Big[i] = X[i]; } int left = 1, right = R; int ans = 0; while(left <= right) { int m = (left + right) / 2; // We are controlling whether we can get m rices. We use binary search because rice count is monotonic. For example, we can get 6 rices, if we can get 7 rices. //int mid = 1; bool valid = false; ll price = 0; for(int i = 0; i < R; i++) { int mid = i + m / 2; ll price = Big[mid] * (mid - i + 1) - (pref[mid] - pref[i - 1]); price += (pref[i + m - 1] - pref[mid - 1]) - Big[mid] * (i + m - mid); if(price <= B) valid = true; } if(valid) { left = m + 1; ans = m; } else right = m - 1; } return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | 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 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 1108 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |