답안 #113766

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
113766 2019-05-28T07:45:46 Z Mahdi_Jfri CEOI16_icc (CEOI16_icc) C++14
61 / 100
171 ms 708 KB
#include<bits/stdc++.h>
#include "icc.h"
using namespace std;

#define ll long long
#define pb push_back

auto seed = chrono::high_resolution_clock::now().time_since_epoch().count();
std::mt19937 rnd(seed);

const int maxn = 1e2 + 20;

vector<int> cmp[maxn];

int a[maxn] , b[maxn] , where[maxn] , x , y , pt = 1;
/*
int query(int sz1 , int sz2 , int* a , int* b)
{
	cout << "START" << endl;
	cout << sz1 << " " << sz2 << endl;
	for(int i = 0; i < sz1; i++)
		cout << a[i] << " ";
	cout << endl;

	for(int i = 0; i < sz2; i++)
		cout << b[i] << " ";
	cout << endl;
	int t = 0;
	for(int i = 0; i < sz1; i++)
		t += (a[i] == x || a[i] == y);

	if(t != 1)
		return 0;

	t = 0;
	for(int i = 0; i < sz2; i++)
		t += (b[i] == x || b[i] == y);

	if(t != 1)
		return 0;

	return 1;
}

void setRoad(int a , int b)
{
	cout << a << " " << b << " HOORAY" << endl;
	if(pt)
		cout << "HERE DONE" << endl;
	if(pt)
		pt-- , x = 2 , y = 3;
	else
		exit(0);
}*/

pair<int , int> fn(int n)
{
	int pt1 = 0 , pt2 = 0;
	while(1)
	{
		pt1 = 0 , pt2 = 0;
		for(int i = 1; i <= n; i++)
		{
			if(rnd() % 2)
			{
				for(auto x : cmp[i])
					a[pt1++] = x;
			}
			else
			{
				for(auto x : cmp[i])
					b[pt2++] = x;
			}
		}

		if(query(pt1 , pt2 , a , b))
			break;
	}

	vector<int> x , y;
	for(int i = 0; i < pt1; i++)
		x.pb(a[i]);
	for(int i = 0; i < pt2; i++)
		y.pb(b[i]);

	while((int)y.size() > 1)
	{
		for(int i = 0; i < (int)y.size() / 2; i++)
			b[i] = y[i];
		pt2 = y.size() / 2;

		if(query(pt1 , pt2 , a , b))
		{
			y.clear();
			for(int i = 0; i < pt2; i++)
				y.pb(b[i]);
		}
		else
		{
			vector<int> tmp;
			for(int i = pt2; i < (int)y.size(); i++)
				tmp.pb(y[i]);
			y = tmp;
		}
	}

	swap(x , y);
	pt1 = x.size();
	for(int i = 0; i < pt1; i++)
		a[i] = x[i];

	while((int)y.size() > 1)
	{
		for(int i = 0; i < (int)y.size() / 2; i++)
			b[i] = y[i];
		pt2 = y.size() / 2;

		if(query(pt1 , pt2 , a , b))
		{
			y.clear();
			for(int i = 0; i < pt2; i++)
				y.pb(b[i]);
		}
		else
		{
			vector<int> tmp;
			for(int i = pt2; i < (int)y.size(); i++)
				tmp.pb(y[i]);
			y = tmp;
		}
	}

	setRoad(x[0] , y[0]);
	return make_pair(x[0] , y[0]);
}

void run(int n)
{
	for(int i = 1; i <= n; i++)
		cmp[i].pb(i) , where[i] = i;

	for(int i = 0; i < n - 1; i++)
	{
		auto tmp = fn(n - i);
		int v = tmp.first , u = tmp.second;

		int k = where[u];
		for(auto x : cmp[k])
			where[x] = where[v] , cmp[where[x]].pb(x);

		for(int j = k + 1; j <= n - i; j++)
		{
			for(auto x : cmp[j])
				where[x] = j - 1;
			cmp[j - 1] = cmp[j];
			swap(cmp[j - 1] , cmp[j]);
		}
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 8 ms 484 KB Ok! 112 queries used.
2 Correct 7 ms 512 KB Ok! 104 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 34 ms 512 KB Ok! 548 queries used.
2 Correct 57 ms 512 KB Ok! 878 queries used.
3 Correct 54 ms 572 KB Ok! 789 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 128 ms 512 KB Ok! 1551 queries used.
2 Correct 171 ms 568 KB Ok! 2131 queries used.
3 Correct 130 ms 632 KB Ok! 1674 queries used.
4 Correct 139 ms 604 KB Ok! 1746 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 124 ms 512 KB Ok! 1618 queries used.
2 Correct 131 ms 640 KB Ok! 1687 queries used.
3 Correct 154 ms 564 KB Ok! 1854 queries used.
4 Correct 127 ms 708 KB Ok! 1564 queries used.
# 결과 실행 시간 메모리 Grader output
1 Incorrect 165 ms 512 KB Too many queries! 1989 out of 1775
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 145 ms 512 KB Too many queries! 1927 out of 1625
2 Halted 0 ms 0 KB -