# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1070818 | dosts | 동굴 (IOI13_cave) | C++17 | 421 ms | 880 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Dost SEFEROĞLU
#include <bits/stdc++.h>
#include "cave.h"
using namespace std;
//#define int long long
#define pii pair<int,int>
#define ff first
#define ss second
#define sp << " " <<
#define all(cont) cont.begin(),cont.end()
#define vi vector<int>
const int MOD = 1e9+7,inf = 2e18;
const int N = 1e5+50;
void exploreCave(int32_t N) {
vector<pii> fix;
int R[N],D[N];
for (int i=0;i<N;i++) {
int S[N];
for (int j=0;j<N;j++) S[j] = 0;
for (auto it : fix) {
S[it.ff] = it.ss;
}
int real = tryCombination(S);
if (real == -1) real = N;
int l = 1;
int r = N;
if (real == i) {
while (l<=r) {
int m = (l+r) >> 1;
int SS[N];
for (int j=0;j<m;j++) SS[j] = S[j]^1;
for (int j=m;j<N;j++) SS[j] = S[j];
for (auto it : fix) SS[it.ff] = it.ss;
int test = tryCombination(SS);
if (test == -1) test = N;
if (test > real) {
r = m-1;
}
else l = m+1;
}
}
else {
while (l<=r) {
int m = (l+r) >> 1;
int SS[N];
for (int j=0;j<m;j++) SS[j] = S[j]^1;
for (int j=m;j<N;j++) SS[j] = S[j];
for (auto it : fix) SS[it.ff] = it.ss;
int test = tryCombination(SS);
if (test == -1) test = N;
if (test == i) {
r = m-1;
}
else l = m+1;
}
}
if (real > i) fix.push_back({l-1,0});
else fix.push_back({l-1,1});
R[fix.back().ff] = i;
D[fix.back().ff] = fix.back().ss;
}
answer(D,R);
}
컴파일 시 표준 에러 (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... |