이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "insects.h"
using namespace std;
using ll = long long;
int in[2020];
int min_cardinality(int n) {
int type = 0;
for (int i = 0;i < n;i++) {
move_inside(i);
if (press_button() == 2) {
move_outside(i);
}
else in[i] = 1, type++;
}
if (type == 1) return n;
int mxans = n / type;
int sq = sqrt(n);
if (mxans <= sq) {
for (int i = 1;i <= mxans;i++) {
int cnt = 0;
for (int j = 0;j < n;j++) {
if (in[j]) continue;
move_inside(j);
if (press_button() > i) {
move_outside(j);
}
else in[j] = 1, cnt++;
}
if (cnt != type) return i;
}
}
else {
int now = 1;
while (now + sq <= mxans) {
now += sq;
int cnt = 0;
for (int i = 0;i < sq && now + sq <= mxans;i++) {
if (in[i]) continue;
move_inside(i);
if (press_button() > now) {
move_outside(i);
}
else in[i] = now, cnt++;
}
if (cnt != type * sq) {
for (int i = 0;i < n;i++) {
if (in[i] == now) move_outside(i), in[i] = 0;
}
while (1) {
now++;
int cnt = 0;
for (int i = 0;i < n;i++) {
if (in[i]) continue;
move_inside(i);
if (press_button() > now) {
move_outside(i);
}
else in[i] = now, cnt++;
}
if (cnt != type) return now - 1;
}
}
}
while (now <= mxans) {
now++;
int cnt = 0;
for (int i = 0;i < n;i++) {
if (in[i]) continue;
move_inside(i);
if (press_button() > now) {
move_outside(i);
}
else in[i] = now, cnt++;
}
if (cnt != type) return now - 1;
}
}
// n , n , n
/*
ans <= n / type
ans <= n - mx
*/
}
컴파일 시 표준 에러 (stderr) 메시지
insects.cpp: In function 'int min_cardinality(int)':
insects.cpp:83:1: warning: control reaches end of non-void function [-Wreturn-type]
83 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |