# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1058457 | 2024-08-14T10:04:42 Z | fuad27 | 드문 곤충 (IOI22_insects) | C++17 | 0 ms | 344 KB |
#include "insects.h" #include <bits/stdc++.h> using namespace std; int min_cardinality(int N) { int distcnt = 0; set<int> idxs; mt19937 rng(time(0)); vector<int> alll(N); iota(alll.begin(), alll.end() ,0); shuffle(alll.begin(), alll.end(), rng); for(int i:alll) { move_inside(i); if(press_button() <= 1){ idxs.insert(i); distcnt++; continue; } move_outside(i); } set<int> all_idxs[N+1]; all_idxs[1] = idxs; int ans=1; int prev = 1; int lo = 2, hi = N/distcnt; while(lo <= hi) { int mid = (lo+hi)/2; if(prev < mid) { for(int j:alll) { if(idxs.find(j)!=idxs.end())continue; move_inside(j); int val = press_button(); idxs.insert(j); if(idxs.size() == mid*distcnt)break; if(val <= mid) { continue; } idxs.erase(j); move_outside(j); } } else { int cur = 1; for(int j = 1;j<mid;j++) { if(all_idxs[j].size() > all_idxs[cur].size()) { cur=j; } } vector<int> er; for(int j:idxs) { if(all_idxs[cur].find(j)==all_idxs[cur].end()) { er.push_back(j); } } int curn=0; for(int j = mid+1;j<N;j++) { if(all_idxs[j].size()) { cur=j; break; } } for(int j:er){ move_outside(j); idxs.erase(j); } for(int j:alll) { if(idxs.find(j)!=idxs.end())continue; if(all_idxs[cur].find(j)==all_idxs[cur].end())continue; move_inside(j); int val = press_button(); idxs.insert(j); if(idxs.size() == mid*distcnt)break; if(val <= mid) { continue; } idxs.erase(j); move_outside(j); } } if(idxs.size() == distcnt*mid) { lo = mid+1; ans=mid; } else { hi=mid-1; } all_idxs[mid] = idxs; prev=mid; } return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 344 KB | Output is correct |
3 | Correct | 0 ms | 344 KB | Output is correct |
4 | Correct | 0 ms | 344 KB | Output is correct |
5 | Incorrect | 0 ms | 344 KB | Wrong answer. |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 344 KB | Output is correct |
3 | Correct | 0 ms | 344 KB | Output is correct |
4 | Correct | 0 ms | 344 KB | Output is correct |
5 | Incorrect | 0 ms | 344 KB | Wrong answer. |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Wrong answer. |
2 | Halted | 0 ms | 0 KB | - |