# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
598418 | Koosha_mv | 동굴 (IOI13_cave) | C++14 | 526 ms | 812 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
#define dbgv(v) cout<<#v<<" = "; f(i,0,int(v.size())) cout<<v[i]<<" "; cout<<endl
#define dbga(a,x,y) cout<<#a<<" = "; f(i,x,y) cout<<a[i]<<" "; cout<<endl
#define erorp(x) cout<<#x<<"={"<<x.F<<" , "<<x.S<<"}"<<endl
#define eror(x) cout<<#x<<'='<<(x)<<endl
#define f_(i,a,b) for(int i=a;i>=b;i--)
#define f(i,a,b) for(int i=a;i<b;i++)
#define nb(x) __builtin_popcount(x)
#define all(v) v.begin(),v.end()
#define bit(n,k) (((n)>>(k))&1)
#define Add(x,y) x=(x+y)%mod
#define maxm(a,b) a=max(a,b)
#define minm(a,b) a=min(a,b)
#define lst(x) x[x.size()-1]
#define sz(x) int(x.size())
#define mp make_pair
#define ll long long
#define pb push_back
#define S second
#define F first
const int N=5050;
int n,p[N],mark[N],state[N];
void exploreCave(int _n) {
n=_n;
vector<int> vec(n);
iota(all(vec),0);
while(vec.size()){
f(i,0,n) mark[i]=state[i];
int now=tryCombination(mark);
int l=0,r=vec.size();
while(l+1<r){
int mid=(l+r)>>1;
f(i,0,vec.size()) mark[vec[i]]=(i<mid);
if(tryCombination(mark)==now){
l=mid;
}
else{
r=mid;
}
}
f(i,0,vec.size()) mark[vec[i]]=(i<r);
int prt=tryCombination(mark);
int id=vec[l];
if(now!=-1 && (prt==-1 || prt>now)){
p[id]=now;
state[id]=1;
}
else{
p[id]=prt;
state[id]=0;
}
vec.erase(vec.begin()+l);
}
answer(state,p);
}
//tryCombination
컴파일 시 표준 에러 (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... |