답안 #283372

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
283372 2020-08-25T15:21:25 Z ElyesChaabouni 최후의 만찬 (IOI12_supper) C++14
0 / 100
577 ms 21596 KB
#include "advisor.h"
//#pragma GCC optimize("O3")
#include<bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
//#define ordered_set tree<int, null_type,less<int >, rb_tree_tag,tree_order_statistics_node_update>
#define eps 1e-9
#define MOD1 998244353
#define MOD2 1000000007
#define INV_10 299473306
#define INF 1000000000
#define PI 3.14159265358979323846
using namespace std;
void ComputeAdvice(int *C, int N, int K, int M) {
	int nb=0;
	int cu=N;
	while(cu)
	{
		nb++;
		cu/=2;
	}
	//cout << nb << '\n';
	for(int i = 0; i < N; i++)
	{
		int x=C[i];
		for(int j = 0; j < nb; j++)
		{
			WriteAdvice((x%2));
			x/=2;
		}
	}
}
//size
#include "assistant.h"
//#pragma GCC optimize("O3")
#include<bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
//#define ordered_set tree<int, null_type,less<int >, rb_tree_tag,tree_order_statistics_node_update>
#define eps 1e-9
#define MOD1 998244353
#define MOD2 1000000007
#define INV_10 299473306
#define INF 1000000000
#define PI 3.14159265358979323846
using namespace std;
void Assist(unsigned char *A, int N, int K, int R) {
	int cu=N, nb=0;
	while(cu)
	{
		nb++;
		cu/=2;
	}
	//cout << "here\n";
	vector<int>v[N+1];
	int step=0;
	for(int i = 0; i+nb-1 < R; i+=nb)
	{
		int x=0, p=1;
		for(int j = 0; j < nb; j++)
		{
			if(A[i+j]=='1')
				x+=p;
			p*=2;
		}
		//cout << x << '\n';
		v[x].push_back(step);
		step++;
	}
	for(int i = 0; i <= N; i++)
		v[i].push_back(100000000);
    set<int>s;
    set<pair<int, int> >pq;
    for(int i = 0; i < K; i++)
    	s.insert(i);
    for(int i = 0; i < K; i++)
    	pq.insert(make_pair(v[i][0], i));
    for(int i = 0; i < N; i++)
    {
    	int next_color=GetRequest();
    	if(!s.count(next_color))
    	{
    		set<pair<int, int> >::iterator it=pq.end();
    		it=prev(it);
    		int to_take_back=(*it).second;
    		PutBack(to_take_back);
    		s.erase(to_take_back);
    		pq.erase(it);
    		s.insert(next_color);
    	}
    	else
    	{
    		pq.erase(make_pair(i, next_color));
    	}
    	vector<int>::iterator it1=upper_bound(v[next_color].begin(), v[next_color].end(), i);
    	pq.insert(make_pair((*it1), next_color));
    }
}
//size
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 644 KB Output is correct
2 Incorrect 2 ms 772 KB Output isn't correct - not an optimal way
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 51 ms 2748 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 415 ms 17356 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 900 KB Error - advice is too long
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 577 ms 20772 KB Output isn't correct - not an optimal way
2 Incorrect 503 ms 21160 KB Output isn't correct - not an optimal way
3 Incorrect 522 ms 21596 KB Output isn't correct - not an optimal way
4 Incorrect 521 ms 21268 KB Output isn't correct - not an optimal way
5 Incorrect 507 ms 21336 KB Output isn't correct - not an optimal way
6 Incorrect 514 ms 21208 KB Output isn't correct - not an optimal way
7 Incorrect 517 ms 21344 KB Output isn't correct - not an optimal way
8 Incorrect 511 ms 21204 KB Output isn't correct - not an optimal way
9 Incorrect 517 ms 21368 KB Output isn't correct - not an optimal way
10 Incorrect 525 ms 21252 KB Output isn't correct - not an optimal way