# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
570874 | nohaxjustsoflo | 동굴 (IOI13_cave) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <iostream>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
typedef tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update> order_set;
mt19937 mt_rand(chrono::high_resolution_clock::now().time_since_epoch().count());
//uniform_int_distribution<int> gen(-1e9, 1e8); ///(min, max)
//int random() {return gen(mt_rand);}
const int mxN = 1e6+50000;
const int mod = 998244353;
const int mxlogN = 34;
const int mxK = 26;
const int inf = 1e9;
const int K = 100000;
int tryCombination(int S[]);
void answer(int S[], int D[]);
void exploreCave(int N)
{
int n=N;
int S[n], D[n];
vector<bool> done(n);
for(int i=0; i<n; i++)
{
bool b=tryCombination(S)==i;
int l=0, r=n-i;
while(r-l>1)
{
int m=(l+r)/2;
int c=0;
for(int j=0; j<n; j++)
{
if(!done[j])
{
if(c>=l&&c<m) S[j]=1;
c++;
}
}
bool b2=tryCombination(S)==i;
if(b==b2) l=m;
else r=m;
for(int j=0; j<n; j++)
{
if(!done[j]) S[j]=0;
}
}
D[l]=i;
S[l]=!b;
done[l]=1;
}
answer(S,D);
}
/*
int main()
{
int n; cin >> n;
vector<int> s(n);
for(int i=0; i<n; i++) cin >> s[i];
cout << count_swaps(s);
return 0;
}
*/