http://codeforces.com/problemset/problem/1154/E

E. Two Teams
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

There are n

students standing in a row. Two coaches are forming two teams — the first coach chooses the first team and the second coach chooses the second team.

The i

-th student has integer programming skill ai. All programming skills are distinct and between 1 and n

, inclusive.

Firstly, the first coach will choose the student with maximum programming skill among all students not taken into any team, and k

closest students to the left of him and k closest students to the right of him (if there are less than k

students to the left or to the right, all of them will be chosen). All students that are chosen leave the row and join the first team. Secondly, the second coach will make the same move (but all students chosen by him join the second team). Then again the first coach will make such move, and so on. This repeats until the row becomes empty (i. e. the process ends when each student becomes to some team).

Your problem is to determine which students will be taken into the first team and which students will be taken into the second team.

Input

The first line of the input contains two integers n

and k (1≤k≤n≤2⋅105

) — the number of students and the value determining the range of chosen students during each move, respectively.

The second line of the input contains n

integers a1,a2,…,an (1≤ai≤n), where ai is the programming skill of the i

-th student. It is guaranteed that all programming skills are distinct.

Output

Print a string of n

characters; i-th character should be 1 if i

-th student joins the first team, or 2 otherwise.

Examples
Input

Copy
5 2
2 4 5 3 1
Output

Copy
11111
Input

Copy
5 1
2 1 3 5 4
Output

Copy
22111
Input

Copy
7 1
7 2 1 3 5 4 6
Output

Copy
1121122
Input

Copy
5 1
2 4 5 3 1
Output

Copy
21112
Note

In the first example the first coach chooses the student on a position 3

, and the row becomes empty (all students join the first team).

In the second example the first coach chooses the student on position 4

, and the row becomes [2,1] (students with programming skills [3,4,5] join the first team). Then the second coach chooses the student on position 1, and the row becomes empty (and students with programming skills [1,2]

join the second team).

In the third example the first coach chooses the student on position 1

, and the row becomes [1,3,5,4,6] (students with programming skills [2,7] join the first team). Then the second coach chooses the student on position 5, and the row becomes [1,3,5] (students with programming skills [4,6] join the second team). Then the first coach chooses the student on position 3, and the row becomes [1] (students with programming skills [3,5] join the first team). And then the second coach chooses the remaining student (and the student with programming skill 1

joins the second team).

In the fourth example the first coach chooses the student on position 3

, and the row becomes [2,1] (students with programming skills [3,4,5] join the first team). Then the second coach chooses the student on position 1, and the row becomes empty (and students with programming skills [1,2] join the second team).

题意:给你n个数排成一排,两个教练轮流在队伍中找到最大的那个数,

并将该数两边k个同时提出队伍,然后第二教练重复上述步骤,直到队伍没人结束。

问每个数被哪一个教练选中。

#include <bits/stdc++.h>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <cstdio>
#include <string>
#include <stdio.h>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <string.h>
#include <vector>
#define ME(x , y) memset(x , y , sizeof(x))
#define SF(n) scanf("%d" , &n)
#define rep(i , n) for(int i = 0 ; i < n ; i ++)
#define INF 0x3f3f3f3f
#define mod 1000000007
#define PI acos(-1)
using namespace std;
typedef long long ll ; int main()
{
int n , k ;
scanf("%d%d" , &n , &k);
vector<pair<int , int> >v(n);//给定容量的vector
for(int i = ; i < n ; i++)
{
scanf("%d" , &v[i].first);
v[i].second = i ;
}
sort(v.rbegin() , v.rend());//反相迭代降序,正向就为升序
queue<int>q;
for(int i = ; i < n ; i++)
{
q.push(v[i].second);
}
set<int>s;
for(int i = ; i < n ; i++)
{
s.insert(i);
}
int who = ;
string ans(n , '');//赋值为n个0字符
while(!s.empty())
{
while(!s.count(q.front()))
{
q.pop();
}
int pos = q.front();
vector<int>v1;
auto it = s.find(pos);
for(int i = ; i <= k ; i++)
{
v1.push_back(*it);
it++ ;
if(it == s.end())
break ;
}
it = prev(s.find(pos));//迭代器的前一个
// it = next(s.find(pos)) 迭代器的后一个
for(int i = ; i < k ; i++)
{
v1.push_back(*it);
if(it == s.begin())
break ;
it-- ;
}
for(auto it : v1)
{
s.erase(it);
ans[it] = ''+ who;
}
who ^= ;
}
cout << ans << endl; return ;
}

stl应用的更多相关文章

  1. 详细解说 STL 排序(Sort)

    0 前言: STL,为什么你必须掌握 对于程序员来说,数据结构是必修的一门课.从查找到排序,从链表到二叉树,几乎所有的算法和原理都需要理解,理解不了也要死记硬背下来.幸运的是这些理论都已经比较成熟,算 ...

  2. STL标准模板库(简介)

    标准模板库(STL,Standard Template Library)是C++标准库的重要组成部分,包含了诸多在计算机科学领域里所常见的基本数据结构和基本算法,为广大C++程序员提供了一个可扩展的应 ...

  3. STL的std::find和std::find_if

    std::find是用来查找容器元素算法,但是它只能查找容器元素为基本数据类型,如果想要查找类类型,应该使用find_if. 小例子: #include "stdafx.h" #i ...

  4. STL: unordered_map 自定义键值使用

    使用Windows下 RECT 类型做unordered_map 键值 1. Hash 函数 计算自定义类型的hash值. struct hash_RECT { size_t operator()(c ...

  5. C++ STL简述

    前言 最近要找工作,免不得要有一番笔试,今年好像突然就都流行在线笔试了,真是搞的我一塌糊涂.有的公司呢,不支持Python,Java我也不会,C有些数据结构又有些复杂,所以是时候把STL再看一遍了-不 ...

  6. codevs 1285 二叉查找树STL基本用法

    C++STL库的set就是一个二叉查找树,并且支持结构体. 在写结构体式的二叉查找树时,需要在结构体里面定义操作符 < ,因为需要比较. set经常会用到迭代器,这里说明一下迭代器:可以类似的把 ...

  7. STL bind1st bind2nd详解

    STL bind1st bind2nd详解   先不要被吓到,其实这两个配接器很简单.首先,他们都在头文件<functional>中定义.其次,bind就是绑定的意思,而1st就代表fir ...

  8. STL sort 函数实现详解

    作者:fengcc 原创作品 转载请注明出处 前几天阿里电话一面,被问到STL中sort函数的实现.以前没有仔细探究过,听人说是快速排序,于是回答说用快速排序实现的,但听电话另一端面试官的声音,感觉不 ...

  9. STL的使用

    Vector:不定长数组 Vector是C++里的不定长数组,相比传统数组vector主要更灵活,便于节省空间,邻接表的实现等.而且它在STL中时间效率也很高效:几乎与数组不相上下. #include ...

  10. [C/C++] C/C++延伸学习系列之STL及Boost库概述

    想要彻底搞懂C++是很难的,或许是不太现实的.但是不积硅步,无以至千里,所以抽时间来坚持学习一点,总结一点,多多锻炼几次,相信总有一天我们会变得"了解"C++. 1. C++标准库 ...

随机推荐

  1. django orm(2)

    目录 聚合函数 分组查询 F与Q查询 F查询 Q查询 事务 Django中的事务 orm字段及参数 自定义char字段 聚合函数 这里的聚合函数和SQL里的聚合函数对应,在使用前需要先进行模块的导入: ...

  2. 华为云服务器centos7.3 安装jdk

    1. 进入oracle官网 https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 服 ...

  3. 代理上网(ssh 动态端口转发)

    ssh 是一种加密通讯的网络协议,常用来在两台机器间做远程登陆.在这里,我们用SSH 来做代理上网. 假设情景 你的PC 不能自由联网 但你的PC 可以访问机器B 机器B 可以自由联网 SSH 上网原 ...

  4. Spring Boot文件上传

    一.创建一个简单的包含WEB依赖的SpringBoot项目 二.配置文件上传的文件大小限制 # 上传文件总的最大值spring.servlet.multipart.max-request-size=1 ...

  5. rk3328设备树学习

    一.用到的rk3328好像使用了设备树 设备树我知道的有三种文件类型,dtbs是通过指令make dtbs编译的二进制文件,供内核使用. 基于同样的软件分层设计的思想,由于一个SoC可能对应多个mac ...

  6. Leetcode 2. Add Two Numbers(指针和new的使用)结构体指针

    ---恢复内容开始--- You are given two non-empty linked lists representing two non-negative integers. The di ...

  7. 大数据笔记(八)——Mapreduce的高级特性(A)

    一.序列化 类似于Java的序列化:将对象——>文件 如果一个类实现了Serializable接口,这个类的对象就可以输出为文件 同理,如果一个类实现了的Hadoop的序列化机制(接口:Writ ...

  8. 转 opencv红绿灯检测

    整个项目源码:GitHub 引言 前面我们讲完交通标志的识别,现在我们开始尝试来实现交通信号灯的识别 接下来我们将按照自己的思路来实现并完善整个Project. 在这个项目中,我们使用HSV色彩空间来 ...

  9. 分类汇总统计mysql数据库一个字段中不同的记录的总和

    方法1.用 if 语句,如下例. 方法2.用case when then else 语句,用法如同if. mysql> select sum(if(id<500,1,0)),sum(if( ...

  10. Linux超全实用指令大全

    参考 Linux超全实用指令大全