Submission #628543

#TimeUsernameProblemLanguageResultExecution timeMemory
628543whynotshadowRarest Insects (IOI22_insects)C++17
0 / 100
272 ms228 KiB
#include "insects.h"

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>

#pragma GCC optimize ("Ofast")
#pragma GCC optimize ("unroll-loops")
#pragma GCC target("avx,avx2,tune=native")

using namespace std;
using namespace __gnu_pbds;

typedef int ll;
typedef long long LL;
typedef long double ld;

#define el "\n"
#define se " "
#define ff first
#define ss second
#define pb push_back
#define all(x) x.begin(), x.end()
#define mkp make_pair
#define srt(x,y) sort(x+1,x+1+y)
#define srtt(x,y,cmp) sort(x+1,x+1+y,cmp)
#define rev(x,y) reverse(x+1,x+1+y)
#define revv(x,y,cmp) reverse(x+1,x+1+y,cmp)
#define print(x) for (auto it : x) cout<<it<<se
#define ordered_set tree<ll, null_type,less_equal<ll>, rb_tree_tag,tree_order_statistics_node_update>

const ll NN=2000+9;
const ll NNN=109;
const ll INF=1e18;
const ld PI=3.141592653589793238462643;
const ll MOD=1e9+7;

ll zero=0;
ll a,b,c,d,a1,b1,c1,val,i,sum1,j,n,m,pos,ans,sum,cur,res,ans1,res1;
ll k,kk,kkk,cnt,cnt1,l,r,x,y,mn,t,fl,q;
bool used[4009];
int min_cardinality(int N) {
    ll mn=INF;
    for(ll i=0;i<N;i++){
        if(used[i]==0){
            move_inside(i);
            ll ans=1,k=0;
            for(j=i+1;j<N;j++){
                move_inside(j);
                if(press_button()==2) ans++,used[j]=1;
                move_outside(j);
                if(ans>=mn){
                    k=1;
                    break;
                }
            }
            if(k==0 && ans==1) return 1;
            move_outside(i);
            if(k==0) mn=min(mn,ans);
        }
    }
    return mn;
}

Compilation message (stderr)

insects.cpp:34:14: warning: overflow in conversion from 'double' to 'll' {aka 'int'} changes value from '1.0e+18' to '2147483647' [-Woverflow]
   34 | const ll INF=1e18;
      |              ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...