# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
430301 | LouayFarah | Unscrambling a Messy Bug (IOI16_messy) | C++14 | 1 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#include "messy.h"
using namespace std;
#define pb push_back
void add_element(string x);
void compile_set();
bool check_element(string x);
vector<int> restore_permutation(int n, int w, int r)
{
vector<string> li;
string s = "00000000";
for(int i = 7; i>=0; i--)
{
for(int j = i-1; j>=0; j--)
{
s[j] = '1';
li.pb(s);
s[j] = '0';
}
s[i] = '1';
}
int len = (int)li.size();
for(int i = 0; i<len; i++)
add_element(li[i]);
compile_set();
vector<int> res;
for(int i = 0; i<8; i++)
res.pb(i);
for(int i = 7; i>=1; i--)
{
for(int j = i-1; j>=0; j--)
{
string s1 = "00000000";
string s2 = s1;
s1[j] = '1';
for(int k = i+1; k<8; k++)
s1[k] = '1';
for(int k = i; k<8; k++)
s2[k] = '1';
if(!check_element(s1)&&check_element(s2))
{
res[i] = j;
res[j] = i;
return res;
}
}
}
}
컴파일 시 표준 에러 (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... |