# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
95660 | dwsc | Unscrambling a Messy Bug (IOI16_messy) | C++14 | 3 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "messy.h"
#include <bits/stdc++.h>
using namespace std;
std::vector<int> restore_permutation(int n, int w, int r) {
int solved[n] = {0};
for (int i = 0; i < n; i++){
string s = "";
for (int j = 0; j <= i; j++) s += '1';
for (int j = i+1; j < n; j++) s += '0';
add_element(s);
//cout << s << "hi\n";
}
compile_set();
vector<int> perm;
for (int i =0; i < n; i++) perm.push_back(-1);
for (int i = 0; i < n; i++){
for (int j = 0; j < n; j++){
if (perm[j] != -1) continue;
string s = "";
for (int k = 0; k < n; k++){
if (perm[k] != -1){
s += '1';
}
else if (k == j) s += '1';
else s += '0';
}
//cout << s <<" " << "\n";
if (check_element(s)){
// cout << j << "hi\n";
perm[j] = i;
break;
}
}
}
return perm;
}
컴파일 시 표준 에러 (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... |