# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
899298 | nasir_bashirov | 동굴 (IOI13_cave) | C++11 | 390 ms | 540 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];
vi done(n, 0);
for(int i = 0; i < n; i++){
int l = 0, r = n - 1, index = -1, p = -1;
for(int j = 0; j < n; j++){
if(done[j]){
qry[j] = type[j];
}
else{
qry[j] = 0;
}
}
int qq = tryCombination(qry);
if(qq >= i + 1 or (qq == -1 and i)){
p = 0;
}
else{
p = 1;
}
while(l < r){
int mid = (l + r) / 2;
for(int j = 0; j < n; j++){
if(done[j]) qry[j] = type[j];
else if(j >= l and j <= mid) qry[j] = p;
else qry[j] = 1 - p;
}
int qq = tryCombination(qry);
if(qq >= i + 1 or (qq == -1 and i)){
r = mid;
index = mid;
}
else{
l = mid + 1;
}
}
done[l] = 1;
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... |