Submission #871196

# Submission time Handle Problem Language Result Execution time Memory
871196 2023-11-10T08:43:26 Z Lib Rarest Insects (IOI22_insects) C++17
0 / 100
81 ms 604 KB
#include <bits/stdc++.h>
#include "insects.h"
//#include "stub.cpp"
using namespace std;
 
deque <int> PrevIndex;
int InMachine[2003];
int Permutation[2003];
//saving the answer of each iteration so that we won't accidentially binsearch something we've already calculated
int ok[2003];
int n;
int TypeCount;
int CurrentInMachine;
int l,r,mid;
 
int PossibleMincount(int cnt){
	while(!PrevIndex.empty()){
			PrevIndex.pop_back();
		}
	if(ok[cnt]){
		return 1;
	}
	//Pushing insects inside the machine, keeping track of the ones being putted inside for this iteration of binary searching
	for(int i=0;i<n;i++){
		if(!InMachine[Permutation[i]]){
			InMachine[Permutation[i]]=1;
			move_inside(Permutation[i]);
			PrevIndex.push_back(Permutation[i]);
			if(press_button()>cnt){
				move_outside(Permutation[i]);
				InMachine[Permutation[i]]=0;
				PrevIndex.pop_back();
			}
			if(PrevIndex.size()==(cnt-l)*TypeCount){
				break;
			}
		}
	}
	if(PrevIndex.size()!=(cnt-l)*TypeCount){
		//There clearly exist a type of insect with cardinality less than cnt, so the answer is less than cnt. Removing insects from last iteration.
		while(!PrevIndex.empty()){
			PrevIndex.pop_back();
		}	
		PrevIndex.clear();
		CurrentInMachine=0;
		for(int i=0;i<n;i++){
			CurrentInMachine+=InMachine[Permutation[i]];
		}
		return 0;
	}else{
		//As every type of insects has at least cnt insects, the answer is at least cnt. Just return true
		while(!PrevIndex.empty()){
			PrevIndex.pop_back();
		}
		CurrentInMachine=0;
		for(int i=0;i<n;i++){
			CurrentInMachine+=InMachine[Permutation[i]];
		}
		return 1;
	}
}
 
int min_cardinality(int N){
	n=N;
	//Create a random permutation to fuck with shitty tests and achieve better query efficiency
	for(int i=0;i<N;i++){
		Permutation[i]=i;
	}
	srand(time(NULL));
	int Tempval;
	for(int i=N-1;i>0;i--){
		Tempval=rand()%i;
		swap(Permutation[i],Permutation[Tempval]);
	}
	//Remember to initialize as this is multitest
	for(int i=0;i<N;i++){
    InMachine[Permutation[i]]=0;
    ok[i+1]=0;
    }
    while(!PrevIndex.empty()){
			PrevIndex.pop_back();
		}
	//Phase 1: Determining the amount of different types of insects
	for(int i=0;i<n;i++){
		move_inside(Permutation[i]);
		InMachine[Permutation[i]]=1;
		PrevIndex.push_back(Permutation[i]);
		if(press_button()>1){
			move_outside(Permutation[i]);
			InMachine[Permutation[i]]=0;
			PrevIndex.pop_back();
		}
	}
	TypeCount=PrevIndex.size();
	r=(N/TypeCount);
	l=1;
	//Phase 2: Binary search for the answer
	while(r-l>=1){
		mid=(l+r+1)/2;
		if(PossibleMincount(mid)){
			l=mid;
		//	r=mid+(N-CurrentInMachine)/TypeCount+1;
		}else{
			r=mid-1;
		}
	}
	if(ok[r]){
		return r;
	}else{
		return l;
	}
}

Compilation message

insects.cpp: In function 'int PossibleMincount(int)':
insects.cpp:34:23: warning: comparison of integer expressions of different signedness: 'std::deque<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   34 |    if(PrevIndex.size()==(cnt-l)*TypeCount){
      |       ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
insects.cpp:39:21: warning: comparison of integer expressions of different signedness: 'std::deque<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   39 |  if(PrevIndex.size()!=(cnt-l)*TypeCount){
      |     ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 0 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 2 ms 344 KB Output is correct
7 Correct 1 ms 344 KB Output is correct
8 Correct 2 ms 344 KB Output is correct
9 Incorrect 3 ms 344 KB Wrong answer.
10 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 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 2 ms 344 KB Output is correct
7 Correct 1 ms 344 KB Output is correct
8 Correct 2 ms 344 KB Output is correct
9 Incorrect 3 ms 344 KB Wrong answer.
10 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 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 19 ms 592 KB Output is correct
8 Correct 8 ms 604 KB Output is correct
9 Correct 23 ms 600 KB Output is correct
10 Partially correct 35 ms 600 KB Output is partially correct
11 Partially correct 81 ms 436 KB Output is partially correct
12 Correct 13 ms 344 KB Output is correct
13 Incorrect 63 ms 456 KB Wrong answer.
14 Halted 0 ms 0 KB -