제출 #1054535

#제출 시각아이디문제언어결과실행 시간메모리
1054535Ignut드문 곤충 (IOI22_insects)C++17
0 / 100
0 ms344 KiB
/* Ignut started: 11.08.2024 now: 12.08.2024 ████████████████████████████████████████████████████████████████████ ████████████████████████████████ ████████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████ ██████████████████ ██████████████████ ██████ ██████ ██████████████ ██████████████ ██████ ██████ ██ ████████████ ████████████ ██ ██████ ██████ ████ ██████████ ██████████ ████ ██████ ██████ ████ ██████████ ██████████ ████ ██████ ██████ ████ ██████████ ██████████ ██████ ██████ ██████ ██████ ██████████ ██████████ ██████ ██████ ██████ ██████ ████████ ████████ ██████ ██████ ██████ ██████ ██████ ██████ ██████ ██████ ██████ ████ ████ ████ ████ ██████ ██████ ██████████ ████ ██████████ ██████ ██████ ██ ██████ ████████ ██████ ██ ██████ ██████ ██████ ████████ ██████ ██████ ██████ ██ ██ ██████ ██████████████████████ ████ ████ ██████████████████████ ████████████████████████ ██ ██ ████████████████████████ ██████████████████████████ ██████████████████████████ ██████████████████████████████ ██████████████████████████████ ████████████████████████████████████████████████████████████████████ */ #include <bits/stdc++.h> using namespace std; using ll = long long; void move_inside(int i); void move_outside(int i); int press_button(); int n; int Go(int maxCount) { vector<int> in; for (int i = 0; i < n; i ++) { move_inside(i); in.push_back(i); if (press_button() > maxCount) { move_outside(i); in.pop_back(); } } int res = in.size(); while (!in.empty()) move_outside(in.back()), in.pop_back(); return res; } int min_cardinality(int N) { int cntDiff = Go(1); n = N; int lo = 1, hi = N; while (lo < hi) { int mid = lo + (hi - lo + 1) / 2; if (1ll * Go(mid) == 1ll * mid * cntDiff) lo = mid; else hi = mid - 1; } return lo; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...