# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
899256 | aykhn | 동굴 (IOI13_cave) | C++17 | 2061 ms | 820 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
#define db long double
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pii>
#define vll vector<pll>
#define endl '\n'
#define all(x) x.begin(), x.end()
#define fastio\
ios_base::sync_with_stdio(0);\
cin.tie(0);\
cout.tie(0)\
void exploreCave(int n){
int type[n], ind[n], qry[n];
map<int, int> done;
for(int i = 0; i < n; i++){
int l = 0, r = n - 1, index, p;
for(int j = 0; j < n; j++){
if(done.count(j)){
qry[j] = done[j];
}
else{
qry[j] = 0;
}
}
if(tryCombination(qry) >= i + 1){
p = 0;
}
else{
p = 1;
}
while(l < r){
int mid = (l + r) / 2;
for(int j = 0; j < n; j++){
if(done.count(j)){
qry[j] = done[j];
continue;
}
if (l <= j && j <= mid){
qry[j] = p;
}
else qry[j] = 1 - p;
}
if(tryCombination(qry) >= i + 1){
r = mid;
}
else{
l = mid + 1;
}
}
done[l] = p;
type[l] = p;
ind[l] = i;
}
answer(type, ind);
}
컴파일 시 표준 에러 (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... |