# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
720762 | nguyentunglam | 드문 곤충 (IOI22_insects) | C++17 | 160 ms | 428 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
#include<bits/stdc++.h>
using namespace std;
const int N = 2e3 + 10;
bool mark[N];
int solve(vector<int> &v1, vector<int> &v2) {
if (v1.size() == 1) return 1 + v2.size();
int mid = v1.size() / 2;
vector<int> tmp1, tmp2, tmp3;
for(int j = 0; j < mid; j++) tmp1.push_back(v1[j]);
for(int j = mid; j < v1.size(); j++) move_outside(v1[j]);
for(int &j : v2) {
move_inside(j);
if (press_button() > 1) tmp2.push_back(j);
else tmp3.push_back(j);
move_outside(j);
}
int ret1 = solve(tmp1, tmp2);
tmp1.clear(); tmp2.clear();
for(int j = mid; j < v1.size(); j++) {
tmp1.push_back(v1[j]);
move_inside(v1[j]);
}
int ret2 = solve(tmp1, tmp3);
return min(ret1, ret2);
}
int min_cardinality(int n) {
vector<int> v1, v2;
for(int i = 0; i < n; i++) {
move_inside(i);
if (press_button() > 1) move_outside(i), v2.push_back(i);
else v1.push_back(i);
}
return solve(v1, v2);
}
컴파일 시 표준 에러 (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... |