# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1058454 | 2024-08-14T10:04:04 Z | fuad27 | 드문 곤충 (IOI22_insects) | C++17 | 40 ms | 1472 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(val == 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 | 420 KB | Output is correct |
3 | Correct | 0 ms | 344 KB | Output is correct |
4 | Correct | 0 ms | 344 KB | Output is correct |
5 | Correct | 0 ms | 344 KB | Output is correct |
6 | Correct | 2 ms | 440 KB | Output is correct |
7 | Correct | 1 ms | 344 KB | Output is correct |
8 | Correct | 3 ms | 600 KB | Output is correct |
9 | Correct | 2 ms | 344 KB | Output is correct |
10 | Incorrect | 4 ms | 344 KB | Wrong answer. |
11 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 420 KB | Output is correct |
3 | Correct | 0 ms | 344 KB | Output is correct |
4 | Correct | 0 ms | 344 KB | Output is correct |
5 | Correct | 0 ms | 344 KB | Output is correct |
6 | Correct | 2 ms | 440 KB | Output is correct |
7 | Correct | 1 ms | 344 KB | Output is correct |
8 | Correct | 3 ms | 600 KB | Output is correct |
9 | Correct | 2 ms | 344 KB | Output is correct |
10 | Incorrect | 4 ms | 344 KB | Wrong answer. |
11 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 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 | Correct | 0 ms | 344 KB | Output is correct |
6 | Correct | 0 ms | 344 KB | Output is correct |
7 | Correct | 16 ms | 1472 KB | Output is correct |
8 | Correct | 11 ms | 720 KB | Output is correct |
9 | Correct | 21 ms | 968 KB | Output is correct |
10 | Correct | 19 ms | 868 KB | Output is correct |
11 | Incorrect | 40 ms | 444 KB | Wrong answer. |
12 | Halted | 0 ms | 0 KB | - |