# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
827065 | 2023-08-16T08:29:54 Z | Amylopectin | 드문 곤충 (IOI22_insects) | C++17 | 1 ms | 208 KB |
#include "insects.h" #include <stdio.h> #include <iostream> #include <vector> using namespace std; const int mxn = 5e3 + 10; int io[mxn] = {}; int min_cardinality(int n) { int i,j,cn,cm,fn,fm,cou = 0,cl,cr,mid,ndif; move_inside(0); cou ++; for(i=1; i<n; i++) { move_inside(i); cou ++; io[i] = 1; cn = press_button(); if(cn == 2) { move_outside(i); io[i] = 0; cou --; } } cl = 1; cr = n / cou; ndif = cou; while(cl < cr) { mid = (cl+cr) / 2 + (cl+cr) % 2; for(i=0; i<n; i++) { if(io[i] == 0) { move_inside(i); cou ++; io[i] = 1; cn = press_button(); if(cn > mid) { move_outside(i); io[i] = 0; cou --; } } } if(mid * ndif == cou) { cl = mid; } else { for(i=0; i<n; i++) { if(io[i] == 1) { move_outside(i); io[i] = 0; cou --; } } cr = mid-1; } } return cl; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 208 KB | Wrong answer. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 208 KB | Wrong answer. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 208 KB | Wrong answer. |
2 | Halted | 0 ms | 0 KB | - |