Submission #912844

# Submission time Handle Problem Language Result Execution time Memory
912844 2024-01-20T02:50:23 Z Faisal_Saqib Last supper (IOI12_supper) C++17
0 / 100
249 ms 18488 KB
#pragma once
// #include "grader.h"
#include "advisor.h"
#include <vector>
#include <cmath>
#include <map>
#include <set>
using namespace std;
/*
1	8	N≤5000 M=65000bits
2	9	N≤100000 M=2000000bits
3	9	N≤100000 M=1500bits K≤25000
4	35	N≤5000 M=10000bits
5	up to 39	N≤100000 M=1800000bits K≤25000
 
*/
void ComputeAdvice(int *c, int n, int k, int m)
{
	// cout<<"ASD\n";
	vector<int> pos[n];
	for(int j=0;j<n;j++)
		pos[j].push_back(1e9);
	for(int i=n-1;i>=0;i--)
		pos[c[i]].push_back(i);
	set<pair<int,int>> hap;
	map<int,int> color_to_index;
	for(int i=0;i<k;i++)
	{
		// cout<<"Hola "<<-pos[i].back()<<' '<<i<<endl;
		hap.insert({-pos[i].back(),i});
		color_to_index[i]=i;
	}
	int lg=log2(k);	
	for(int j=0;j<n;j++)
	{
		pos[c[j]].pop_back();
		if(color_to_index.find(c[j])==color_to_index.end())
		{
			auto it=*begin(hap);
			hap.erase(begin(hap));
			// cout<<"Rem "<<-it.first<<' '<<it.second<<" ind ";
			int npd=color_to_index[it.second];
			// cout<<npd<<endl;
			for(int l=lg;l>=0;l--)
			{
				if(npd&(1ll<<l))
				{
					WriteAdvice(1);	
				}
				else
				{
					WriteAdvice(0);
				}
			}
			color_to_index.erase(it.second);
			hap.insert({-pos[c[j]].back(),c[j]});
			color_to_index[c[j]]=npd;
		}
	}	
}
#pragma once
// #include "grader.h"
#include "assistant.h"
#include <vector>
#include <cmath>
#include <map>
#include <set>
using namespace std;
void Assist(unsigned char *a, int n, int k, int r)
{
	vector<int> ans;
	set<int> hap;
	for(int i=0;i<k;i++)
	{
		hap.insert(i);
		ans.push_back(i);
	}
	int lg=log2(k);
	int p=0;
	for(int j=0;j<n;j++)
	{
		int x=GetRequest();
		if(hap.find(x)!=hap.end())
			continue;
		int ind=0;
		for(int l=lg;l>=0;l--)
		{
			ind*=2;
			ind+=a[p];
			p++;
		}
		PutBack(ans[ind]);
		hap.erase(ans[ind]);
		hap.insert(x);
		ans[ind]=x;
	}
}

Compilation message

advisor.cpp:1:9: warning: #pragma once in main file
    1 | #pragma once
      |         ^~~~

assistant.cpp:1:9: warning: #pragma once in main file
    1 | #pragma once
      |         ^~~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 776 KB Output is correct
2 Incorrect 1 ms 796 KB Output isn't correct - not an optimal way
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 19 ms 2264 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 189 ms 13952 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 1204 KB Error - advice is too long
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 249 ms 17316 KB Output isn't correct - not an optimal way
2 Incorrect 241 ms 17288 KB Output isn't correct - not an optimal way
3 Incorrect 238 ms 17220 KB Output isn't correct - not an optimal way
4 Incorrect 236 ms 17152 KB Output isn't correct - not an optimal way
5 Incorrect 240 ms 17100 KB Output isn't correct - not an optimal way
6 Incorrect 246 ms 17184 KB Output isn't correct - not an optimal way
7 Incorrect 241 ms 17024 KB Output isn't correct - not an optimal way
8 Incorrect 236 ms 17212 KB Output isn't correct - not an optimal way
9 Incorrect 237 ms 17156 KB Output isn't correct - not an optimal way
10 Correct 248 ms 18488 KB Output is partially correct - 1117620 bits used