답안 #924809

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
924809 2024-02-09T17:57:46 Z AkibAzmain 드문 곤충 (IOI22_insects) C++17
0 / 100
0 ms 344 KB
#include "insects.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int min_cardinality (int n) {
  vector < int > a (n, -1);
  vector < int > c;
  int ci = 0;
  for (int i = 0; i < n; ++i)
    {
      if (a[i] == -1) a[i] = ci++;
      c.push_back (1);
      move_inside (i);
      for (int j = i + 1; j < n; ++j)
        {
          if (a[j] != -1) continue;
          move_inside (i);
          if (press_button () == 2)
            a[j] = a[i], ++c[a[i]];
          move_inside (i);
      }
      move_outside (i);
    }
  return *min_element (c.begin (), c.end ());
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Wrong answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Wrong answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 0 ms 344 KB Wrong answer.
3 Halted 0 ms 0 KB -