| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1287939 | eri16 | 동굴 (IOI13_cave) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include "cave.h"
using namespace std;
void exploreCave(int n){
vector <int> d,v;
for (int i=0; i<n; i++){
d.push_back(i);
v.push_back(0);
}
int ans=0;
while (ans!=(-1)){
int c=tryCombination(v);
v[c]=1;
}
answer(v,d);
}
