Submission #1024583

# Submission time Handle Problem Language Result Execution time Memory
1024583 2024-07-16T08:21:54 Z mansur Rarest Insects (IOI22_insects) C++17
0 / 100
1 ms 596 KB
#include "insects.h"
#include <bits/stdc++.h>

using namespace std;

#define rall(s) s.rbegin(), s.rend()
#define all(s) s.begin(), s.end()
#define sz(s) (int) s.size()
#define s second 
#define f first 

using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;

int min_cardinality(int n) {
    vector<vector<int>> s;
    s.push_back({{0}});
    for (int i = 1; i < n; i++) {
        move_inside(i);
        if (press_button() > 1) {
            for (int j = 0; j < sz(s); j++) {   
                move_outside(s[j].back());
                if (press_button() == 1) {
                    s[j].push_back(i);
                    break;
                }
                move_inside(s[j].back());
            }
            continue;
        }
        s.push_back({{i}});
    }
    int ans = n + 1;
    for (int i = 0; i < sz(s); i++) ans = min(ans, sz(s[i]));
    return ans;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 596 KB Wrong answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 596 KB Wrong answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 0 ms 344 KB Wrong answer.
3 Halted 0 ms 0 KB -