| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 648588 | a_aguilo | Cave (IOI13_cave) | C++14 | 68 ms | 424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include<bits/stdc++.h>
using namespace std;
int n;
void applyChanges(int combo[], int l, int r, int setInterrup, int preRequisites[]){
for(int i = l; i <= r; ++i) combo[i] = setInterrup;
for(int i = 0; i < n;++i){
if(preRequisites[i] != -1) combo[i] == preRequisites[i];
}
}
void exploreCave(int N) {
/* ... */
//answer(switches, correspondence)
n = N;
int setInterruptors[N];
memset (setInterruptors, -1, sizeof(setInterruptors));
int yourInterruptor[N];
for(int door = 0; door < N; ++door){
int lo = 0; int hi = N-1;
int InterruptVal;
int combo[N];
memset (combo, 0, sizeof(combo));
applyChanges(combo, 0, 0, 0, setInterruptors);
int ans = tryCombination(combo);
InterruptVal = 0;
if(ans == -1 or ans > door) InterruptVal = 0;
else InterruptVal = 1;
int pos = 0;
while(lo <= hi){
int mid = lo + (hi - lo)/2;
memset(combo, InterruptVal^1, sizeof(combo));
applyChanges(combo, lo, mid, InterruptVal, setInterruptors);
ans = tryCombination(combo);
if(ans == -1 or ans > door){
hi = mid-1;
pos = mid;
}
else lo = mid+1;
}
yourInterruptor[door] = pos;
setInterruptors[pos] = InterruptVal;
}
answer(setInterruptors, yourInterruptor);
}컴파일 시 표준 에러 (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... | ||||
