Submission #363085

# Submission time Handle Problem Language Result Execution time Memory
363085 2021-02-05T04:29:36 Z fhvirus Last supper (IOI12_supper) C++14
0 / 100
512 ms 80964 KB
//Knapsack DP is harder than FFT.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
#define ff first
#define ss second
#define pb emplace_back
#define FOR(i,n) for(int i = 0; i < (n); ++i)
#define FOO(i,a,b) for(int i = (a); i <= (b); ++i)
#define AI(x) (x).begin(),(x).end()
template<typename I> bool chmax(I &a, I b){ return a < b ? (a = b, true) : false;}
template<typename I> bool chmin(I &a, I b){ return a > b ? (a = b, true) : false;}
#ifdef OWO
#define debug(args...) LKJ("[ " + string(#args) + " ]", args)
void LKJ(){ cerr << endl;}
template<typename I, typename...T> void LKJ(I&&x, T&&...t){ cerr<<x<<", ", LKJ(t...);}
template<typename I> void DE(I a, I b){ while(a < b) cerr << *a << " \n"[next(a) == b], ++a;}
#else
#define debug(...) 0
#define DE(...) 0
#endif
#ifdef OWO
void ComputeAdvice(int *C, int N, int K, int M); void WriteAdvice(unsigned char a);
int32_t main(){
	ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	int n, m, k;
	cin >> n >> k >> m;
	int *c = new int[n];
	for(int i = 0; i < n; ++i) cin >> c[i];
	ComputeAdvice(c, n, k, m);
	return 0;
}
void WriteAdvice(unsigned char a){
	putchar(a + '0');
	putchar(' ');
}
#else
#include "advisor.h"
#endif
const int maxn = 1e5 + 225;
queue<int> app[maxn];
void ComputeAdvice(int *C, int N, int K, int M){
	int L = __lg(N - 1);
	
	for(int i = 0; i < N; ++i) app[C[i]].emplace(i);
	for(int i = 0; i < N; ++i) app[i].emplace(8e7);

	vector<int> s(N);
	priority_queue<pii> pq;
	for(int i = 0; i < K; ++i) s[i] = 1;
	for(int i = 0; i < K; ++i) pq.emplace(app[i].front(), i);

	auto wn = [&L](int a){
		for(int i = L; i >= 0; --i){
			WriteAdvice((a >> i & 1));
		}
	};
	for(int i = 0; i < N; ++i){
		int c = C[i]; app[c].pop();
		if(s[c] != 0){
			wn(c);
			continue;
		}
		int eek;
		pii tp;
		do{
			tp = pq.top(); pq.pop();
			eek = tp.ss;
		} while(s[eek] == 0);
		wn(eek);
		s[eek] = 0;
		s[c] = 1;
		pq.emplace(app[c].front(), c);
	}
}

//Knapsack DP is harder than FFT.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
#define ff first
#define ss second
#define pb emplace_back
#define FOR(i,n) for(int i = 0; i < (n); ++i)
#define FOO(i,a,b) for(int i = (a); i <= (b); ++i)
#define AI(x) (x).begin(),(x).end()
template<typename I> bool chmax(I &a, I b){ return a < b ? (a = b, true) : false;}
template<typename I> bool chmin(I &a, I b){ return a > b ? (a = b, true) : false;}
#ifdef OWO
#define debug(args...) LKJ("[ " + string(#args) + " ]", args)
void LKJ(){ cerr << endl;}
template<typename I, typename...T> void LKJ(I&&x, T&&...t){ cerr<<x<<", ", LKJ(t...);}
template<typename I> void DE(I a, I b){ while(a < b) cerr << *a << " \n"[next(a) == b], ++a;}
#else
#define debug(...) 0
#define DE(...) 0
#endif
#ifdef OWO
void Assist(unsigned char *A, int N, int K, int R); void PutBack(int T);
int GetRequest();
int32_t main(){
	ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	int n, k, r; cin >> n >> k >> r;
	unsigned char * a = new unsigned char[r];
	for(int i = 0; i < r; ++i) cin >> a[i];
	Assist(a, n, k, r);
	return 0;
}
int GetRequest(){
	const int a[4] = {2, 0, 3, 0};
	static int p = 0;
	return a[p++];
}
void PutBack(int T){
	cout << T << ' ';
}
#else
#include "assistant.h"
#endif
const int maxn = 1e5 + 225;
void Assist(unsigned char *A, int N, int K, int R){
	int L = __lg(N - 1);
	auto GC = [&](){
		static int p = 0;
		return A[p++];
	};

	for(int i = 0; i < N; ++i){
		int c = GetRequest();
		int ans = 0;
		for(int i = 0; i <= L; ++i){
			ans = (ans << 1) | (GC());
		}
		//debug(ans);
		if(ans == c) continue;
		PutBack(ans);
	} 
}
# Verdict Execution time Memory Grader output
1 Correct 54 ms 68548 KB Output is correct
2 Incorrect 54 ms 68248 KB Output isn't correct - not an optimal way
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 97 ms 69312 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 434 ms 78768 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 56 ms 68580 KB Error - advice is too long
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 497 ms 80804 KB Output isn't correct - not an optimal way
2 Incorrect 493 ms 80476 KB Output isn't correct - not an optimal way
3 Incorrect 490 ms 80708 KB Output isn't correct - not an optimal way
4 Incorrect 491 ms 80964 KB Output isn't correct - not an optimal way
5 Incorrect 494 ms 80812 KB Output isn't correct - not an optimal way
6 Incorrect 486 ms 80708 KB Output isn't correct - not an optimal way
7 Incorrect 489 ms 80596 KB Output isn't correct - not an optimal way
8 Incorrect 488 ms 80708 KB Output isn't correct - not an optimal way
9 Incorrect 495 ms 80812 KB Output isn't correct - not an optimal way
10 Correct 512 ms 80872 KB Output is partially correct - 1700000 bits used