답안 #129107

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
129107 2019-07-11T16:22:57 Z arthurconmy 쌀 창고 (IOI11_ricehub) C++14
0 / 100
6 ms 868 KB
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <map>
#include <queue>
#include <bitset>
#include <random>
#include <stack>
#include <deque>
#include <chrono>
using namespace std;

#ifndef ARTHUR_LOCAL
	#include "ricehub.h"
#endif

#ifdef ARTHUR_LOCAL
	#define ARTHUR_MAIN main
#endif

using ll = long long;

#define REP(i,a,b) \
for(int i=int(a); i<=int(b); i++)

#define len(x) int(x.size())

int besthub(int R, int L, int X[], long long B)
{
	ll cur_budget = B + R*0;
	int maxx=0;
	
	deque<int> ahead;

	REP(i,0,L-1) ahead.push_back(X[i]);

	deque<int> cur_behind;
	deque<int> cur_ahead;

	cur_behind.push_back(X[0]);
	ahead.pop_front();

	while(cur_budget>0 && !ahead.empty())
	{
		if(cur_budget >= ll(ahead.front()-X[0]))
		{
			cur_budget -= ll(ahead.front()-X[0]);

			// cout << X[0] << " " << ahead.front() << endl;

			cur_ahead.push_back(ahead.front());
			ahead.pop_front();
		}

		else break;
	}

	maxx=len(cur_behind)+len(cur_ahead);

	// cout << cur_behind.size() << " " << cur_ahead.size() << endl;

	REP(i,1,R-1)
	{
		cur_budget -= ll(len(cur_behind)-len(cur_ahead))*ll(X[i]-X[i-1]);
		
		// move X[i] from cur_ahead to cur_behind

		if(!cur_ahead.empty()) cur_ahead.pop_front();
		else ahead.pop_front();
		cur_behind.push_back(X[i]);

		while(cur_budget < 0) 
		{
			cur_budget += X[i]-cur_behind.front();
			cur_behind.pop_front();
		}

		while(cur_budget > 0 && !ahead.empty() && ahead.front()-X[i] <= cur_budget)
		{
			cur_budget -= ahead.front()-X[i];
			cur_ahead.push_back(ahead.front());
			ahead.pop_front();
		}

		while(!ahead.empty() && !cur_behind.empty() && ahead.front() - X[i] <= X[i] - cur_behind.front())
		{
			cur_budget -= X[i] + X[i] - cur_behind.front() - ahead.front();
			cur_behind.pop_front();
			cur_ahead.push_back(ahead.front());
			ahead.pop_front();

			while(cur_budget > 0 && !ahead.empty() && ahead.front()-X[i] <= cur_budget)
			{
				cur_budget -= ahead.front()-X[i];
				cur_ahead.push_back(ahead.front());
				ahead.pop_front();
			} // yikes a lot of while loops
		}

		maxx=max(maxx,len(cur_behind)+len(cur_ahead));

		// cout << X[i] << " " << len(cur_behind) << " " << len(cur_ahead) << endl;

		// cur_behind.push_front()
	}

	return maxx;
}

// int X[5];

// int ARTHUR_MAIN()
// {
// 	X[0]=1;
// 	X[1]=2;
// 	X[2]=10;
// 	X[3]=12;
// 	X[4]=14;

// 	cout << besthub(5,20,X,6) << endl;

// 	return 0;
// }
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 868 KB Output isn't correct
2 Halted 0 ms 0 KB -