# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
226851 | VEGAnn | Unscrambling a Messy Bug (IOI16_messy) | C++14 | 6 ms | 640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "messy.h"
#define PB push_back
using namespace std;
const int N = 128;
vector<int> seg[2][N], res, vc;
string s, l[N], r[N];
bool mrk[N];
std::vector<int> restore_permutation(int n, int w, int r) {
int lg = 0;
while ((1 << lg) < n)
lg++;
s = "";
for (int i = 0; i < n; i++)
s += "1";
for (int it = 0; it < lg; it++){
int len = n / (1 << (it + 1));
for (int i = 0; i < n; i += len * 2){
for (int j = 0; j < len + len; j++)
s[i + j] = '0';
for (int j = 0; j < len; j++){
s[i + j] = '1';
# | 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... |