# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
651085 | dooompy | Martian DNA (BOI18_dna) | C++17 | 646 ms | 27608 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>
using namespace std;
int states[200005];
map<int, pair<int, int>> req;
set<int> completed;
map<int, int> have;
int n, k, r;
bool move(int &idx) {
if (completed.size() == r) return true;
while (completed.size() < r) {
idx++;
if (idx > n) return false;
have[states[idx]]++;
if (have[states[idx]] == req[states[idx]].first) {
completed.insert(req[states[idx]].second);
}
}
return true;
}
int main() {
cin >> n >> k >> r;
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... |