# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
743327 | 2023-05-17T09:51:48 Z | vjudge1 | 쌀 창고 (IOI11_ricehub) | C++17 | 2 ms | 340 KB |
#include <bits/stdc++.h> using namespace std; int besthub(int R, int L, int X[], long long B) { int mid = X[R / 2]; int left = (R / 2) - 1; int right = (R / 2) + 1; int possible = 1; int curcost = 0; bool breakleft = false; bool breakright = false; while (!breakleft || !breakright) { int disleft, disright; if (left >= 0) disleft = mid - X[left]; else breakleft = 1; if (right < R) disright = X[right] - mid; else breakright = 1; if (disleft > disright && !breakleft) { if (disleft + curcost <= B) { possible++; curcost += disleft; left--; } else { breakleft = true; } if (disright + curcost <= B) { possible++; curcost += disright; right++; } else { breakright = true; } } else { if (disright + curcost <= B) { possible++; curcost += disright; right++; } else { breakright = true; } if (disleft + curcost <= B) { possible++; curcost += disleft; left--; } else { breakleft = true; } } } cout << possible; return possible; } /* 5 20 6 1 2 10 12 14 */
Compilation message
# | 결과 | 실행 시간 | 메모리 | 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 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |