# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
384088 | mehrdad_sohrabi | 동굴 (IOI13_cave) | C++14 | 970 ms | 876 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cave.h"
/// 500 485 462 A4
using namespace std;
typedef int ll;
typedef complex<double> point;
typedef long double ld;
#define pb push_back
#define pii pair < ll , ll >
#define F first
#define S second
//#define endl '\n'
//#define int long long
#define sync ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0)
#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math")
#define kill(x) return cout<<x<<'\n', 0;
const int N=5e3+10;
/*
void answer(int S[], int D[]) {
for (int i=0;i<10;i++){
cout << S[i] << " ";
}
cout << endl;
for (int i=0;i<10;i++){
cout << D[i] << " ";
}
}
ll tryCombination(int S[]) {
for (int i=0;i<10;i++){
if (S[i]==1) return i;
}
return -1;
}
*/
ll state[N];
ll mat[N];
ll vis[N];
void exploreCave(int N) {
/* ... */
ll n=N;
for (int i=0;i<n;i++){
vector <int> a;
for (int j=0;j<n;j++) if (!vis[j]) a.pb(j);
ll z=tryCombination(state);
ll l=0,r=a.size();
while(r-l>1){
ll mid=(r+l)/2;
for (int j=mid;j<a.size();j++) state[a[j]]=1;
ll d=tryCombination(state);
if ((d==i && z!=i) || (d!=i && z==i)) l=mid;
else r=mid;
for (int j=mid;j<a.size();j++) state[a[j]]=0;
}
l=a[l];
mat[l]=i;
vis[l]=1;
if (z==i) state[l]=1;
}
answer(state,mat);
}
/*
int main(){
ll n;
cin >> n;
exploreCave(N);
}
*/
컴파일 시 표준 에러 (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... |