# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
107096 | Noam527 | Koala Game (APIO17_koala) | C++17 | 73 ms | 512 KiB |
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 <bits/stdc++.h>
#define CHECK cout << "ok" << endl
#define finish(x) return cout << x << endl, 0
typedef long long ll;
typedef long double ldb;
const int md = 1e9 + 7;
const ll inf = 1e18;
const int OO = 1;
const int OOO = 1;
using namespace std;
// returns such i that we get [i, r], [l, i - 1]
int put(int l, int r, int x = -1) {
const int n = 100;
if (x == -1) {
x = n / (r - l + 1);
}
int at = r + 1, cost = 0, sum = 0, cnt = 0;
int best = r + 1;
pair<int, int> mx = { -1, -1 };
while (at > l && cost + x + 1 <= n) {
at--;
sum += at;
cnt++;
cost += x + 1;
}
vector<int> other;
for (int i = n; i >= 1; i--) {
if (i < l || r < i) other.push_back(i);
}
Compilation message (stderr)
# | 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... |