The Preliminary Contest for ICPC Asia Nanjing 2019 F. Greedy Sequence 主席树

#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<stack>
#include<cstring>
#include<set>
#include<iterator>
#include<list>
#include<deque>
#include<queue>
#include<map>
#include<cmath>
#include<sstream>
#include<cstdio>
#include<ctime>
#include<iomanip>
#include<unordered_map>
using namespace std;
typedef long long ll;
typedef pair<int, int> P;
const int N = 1e5 + 10;
const int inf = 0x3f3f3f3f;
const ll INF = 0x3f3f3f3f3f3f3f3f;
struct SegmentTree
{
	int lc, rc;
	int dat;
}t[N * 50];
int tot, root[N];
int a[N], pos[N];
int ans[N];
int update(int now, int l, int r, int x)
{
	int p = ++tot;
	t[p] = t[now];
	if (l == r)
	{
		t[p].dat++;
		return p;
	}
	int mid = (l + r) >> 1;
	if (x <= mid)
		t[p].lc = update(t[now].lc, l, mid, x);
	else
		t[p].rc = update(t[now].rc, mid + 1, r, x);
	t[p].dat = t[t[p].lc].dat + t[t[p].rc].dat;
	return p;
}
int build(int l, int r)
{
	//cout << l << " " << r << endl;
	int p = ++tot;
	t[p].dat = 0;
	if (l == r)
	{
		return p;
	}
	int mid = (l + r) >> 1;
	t[p].lc = build(l, mid);
	t[p].rc = build(mid + 1, r);
	return p;
}
int ask(int p, int q, int l, int r, int L, int R)
{
	if (t[p].dat - t[q].dat == 0)
		return -1;
	if (l == r)
	{
		if (t[p].dat - t[q].dat)
			return l;
		return -1;
	}
	int mid = (l + r) >> 1;
	int ret = -1;
	if (R > mid)
		ret = ask(t[p].rc, t[q].rc, mid + 1, r, L, R);
	if (ret == -1 && L <= mid)
		ret = ask(t[p].lc, t[q].lc, l, mid, L, R);
	return ret;
}
int main()
{
	int t;
	scanf("%d", &t);
	while (t--)
	{
		int n, k;
		scanf("%d%d", &n, &k);
		tot = 0;
		root[0] = build(1, n);
		for (int i = 1; i <= n; i++)
		{
			scanf("%d", &a[i]);
			pos[a[i]] = i;
			root[i] = update(root[i - 1], 1, n, a[i]);
		}
		ans[1] = 1;
		for (int i = 2; i <= n; i++)
		{
			int begin = i;
			int cot = 0;
			int st = max(1, pos[begin] - k);
			int ed = min(n, pos[begin] + k);		
			begin = ask(root[st - 1], root[ed], 1, n, 1, begin - 1);
			//cout << "begin == " << begin << endl;
			if (begin == -1)
			{
				ans[i] = 1;
			}
			else
			{
				ans[i] = ans[begin] + 1;
			}
		}
		for (int i = 1; i <= n; i++)
		{
			if (i != 1)
				printf(" ");
				printf("%d", ans[i]);
		}
		printf("\n");
	}
	return 0;
}

 

Sure, I'd be happy to give you some ideas for organizing a speech contest. Here are some suggestions: 1. Determine the theme and rules: Decide on the theme of the contest and the rules for participants. Will it be an open topic, or will there be a specific theme? What is the maximum length of the speech? Will there be any specific guidelines for language or content? 2. Decide on the judging criteria: Determine how the speeches will be evaluated. Will judges be looking for content, delivery, or both? Will there be a score sheet or rubric that judges will use to score the speeches? 3. Recruit judges: Find people who are qualified to judge the speeches. Ideally, they should have experience in public speaking or have a background in the theme of the contest. 4. Promote the contest: Advertise the contest to potential participants, such as students, professionals, or members of a specific community. Use social media, flyers, and other methods to get the word out. 5. Registration and selection: Set a deadline for registration and selection of participants. Consider having a preliminary round to narrow down the field before the final competition. 6. Prepare the venue: Ensure that the venue is suitable for the contest. Make sure that there is adequate seating, sound equipment, and lighting for the speakers. 7. Hold the contest: Set a date and time for the contest, and make sure that all participants and judges are aware of the schedule. Encourage audience participation and provide refreshments. 8. Award ceremony: After the contest, hold an award ceremony to recognize the winners and participants. Provide certificates or other prizes to the top performers. I hope these ideas help you in organizing a successful speech contest!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值