# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
579793 | AlperenT | Zalmoxis (BOI18_zalmoxis) | C++17 | 171 ms | 10588 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 n, k, x;
deque<int> a, b;
vector<int> lft, rght;
int main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);
cin >> n >> k;
for(int i = 1; i <= n; i++){
cin >> x;
b.push_back(x);
}
a.push_back(30);
while(lft.size() + rght.size() + a.size() < n + k){
if(!b.empty() && a.front() == b.front() && lft.size() + rght.size() + a.size() < n + k){
lft.push_back(a.front());
a.pop_front();
b.pop_front();
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |