# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
229847 | achibasadzishvili | Unscrambling a Messy Bug (IOI16_messy) | C++14 | 6 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll int
#define f first
#define s second
#define pb push_back
using namespace std;
#include "messy.h"
vector<int> restore_permutation(int n, int w, int r){
string s = "";
srand(time(NULL));
for(int i=1; i<=n; i++)
s += '0';
for(int i=0; i<n; i++){
s[i] = '1';
add_element(s);
}
ll sq = sqrt(n);
s = "1";
for(int i=1; i<n; i++)s += '0';
for(int i=1; i<n; i++){
s[i] = '1';
add_element(s);
s[i] = '0';
if((i % sq) == 0){
for(int j=i; j>=0; j--)
s[j] = '1';
}
}
compile_set();
string a = "";
for(int i=0; i<n; i++)
a += '0';
vector<ll>p;
for(int i=0; i<n; i++)
p.pb(0);
vector<ll>k;
for(int j=0; j<n; j++)
if(a[j] == '0')
k.pb(j);
for(int i=0; i<n; i++){
random_shuffle(k.begin() , k.end());
random_shuffle(k.begin() , k.end());
random_shuffle(k.begin() , k.end());
random_shuffle(k.begin() , k.end());
for(int ji=0; ji<k.size(); ji++){
int j = k[ji];
if(ji == k.size() - 1){
k.pop_back();
a[j] = '1';
p[i] = j;
break;
}
if(a[j] == '0'){
a[j] = '1';
if(check_element(a)){
p[i] = j;
swap(k[ji] , k[(int)k.size() - 1]);
k.pop_back();
break;
}
a[j] = '0';
}
}
if((i % sq) == 0){
k.clear();
string po = "";
for(int j=0; j<n; j++)
po += '0';
for(int j=0; j<=i; j++){
po[p[j]] = '1';
}
for(int j=0; j<n; j++){
if(po[j] == '1')continue;
po[j] = '1';
if(check_element(po)){
k.pb(j);
}
po[j] = '0';
}
}
}
vector<ll>ans;
for(int i=0; i<n; i++)
ans.pb(0);
for(int i=0; i<p.size(); i++){
ans[p[i]] = i;
}
return ans;
}
컴파일 시 표준 에러 (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... |