# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1121865 | vjudge1 | Unscrambling a Messy Bug (IOI16_messy) | C++17 | 1 ms | 508 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "messy.h"
using namespace std;
vector<int> restore_permutation(int n, int w, int r) {
add_element("00000001");
add_element("00000011");
add_element("00000111");
add_element("00001111");
add_element("00011111");
add_element("00111111");
add_element("01111111");
compile_set();
vector<int> res={0,1,2,3,4,5,6,7};
bool ans1=check_element("00000001");
bool ans2=check_element("00000011");
bool ans3=check_element("00000111");
bool ans4=check_element("00001111");
bool ans5=check_element("00011111");
bool ans6=check_element("00111111");
bool ans7=check_element("01111111");
if(ans1)
{
if(ans2)
{
if(ans3)
{
if(ans4)
{
if(ans5)
{
if(ans6)
{
if(ans7)
return res;
else
{
string s="01111111";
for(int i=1;i<8;i++)
{
swap(s[i],s[0]);
if(check_element(s))
{
swap(res[i],res[0]);
return res;
}
swap(s[i],s[0]);
}
}
}
else
{
string s="00111111";
for(int j=0;j<2;j++)
{
for(int i=2;i<8;i++)
{
swap(s[i],s[j]);
if(check_element(s))
{
swap(res[i],res[j]);
return res;
}
swap(s[i],s[j]);
}
}
}
}
else
{
string s="00011111";
for(int j=0;j<3;j++)
{
for(int i=3;i<8;i++)
{
swap(s[i],s[j]);
if(check_element(s))
{
swap(res[i],res[j]);
return res;
}
swap(s[i],s[j]);
}
}
}
}
else
{
string s="00001111";
for(int j=0;j<4;j++)
{
for(int i=4;i<8;i++)
{
swap(s[i],s[j]);
if(check_element(s))
{
swap(res[i],res[j]);
return res;
}
swap(s[i],s[j]);
}
}
}
}
else
{
string s="00000111";
for(int j=0;j<5;j++)
{
for(int i=5;i<8;i++)
{
swap(s[i],s[j]);
if(check_element(s))
{
swap(res[i],res[j]);
return res;
}
swap(s[i],s[j]);
}
}
}
}
else
{
string s="00000011";
for(int j=0;j<6;j++)
{
for(int i=6;i<8;i++)
{
swap(s[i],s[j]);
if(check_element(s))
{
swap(res[i],res[j]);
return res;
}
swap(s[i],s[j]);
}
}
}
}
else
{
string s="00000001";
for(int j=0;j<7;j++)
{
for(int i=7;i<8;i++)
{
swap(s[i],s[j]);
if(check_element(s))
{
swap(res[i],res[j]);
return res;
}
swap(s[i],s[j]);
}
}
}
}
컴파일 시 표준 에러 (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... |