# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
893132 | Trisanu_Das | 드문 곤충 (IOI22_insects) | C++17 | 48 ms | 1116 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "insects.h"
using namespace std;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int min_cardinality(int N) {
vector <int> rest;
auto attempt = [&](int x, int v) {
move_inside(x);
if (press_button() != v) rest.push_back(x), move_outside(x);
};
for (int i = 0; i < N; i++) attempt(i, 1);
int ans = 1, cnt = N - (int)rest.size();
for (; !rest.empty(); ans++) {
vector <int> tmp = rest;
rest.clear();
shuffle(tmp.begin(), tmp.end(), rng);
for (int i = 0; i < tmp.size(); i++)
if (i < rest.size() + cnt) attempt(tmp[i], ans + 1);
else rest.push_back(tmp[i]);
if (tmp.size() < rest.size() + cnt) break;
}
return ans;
}
컴파일 시 표준 에러 (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... |