SRM 586 DIV2 250

來源:互聯網
上載者:User
Problem Statement
  The boys in the yard are going to play soccer. There are N+2 boys, two of which have been chosen as captains. Now they want to divide the other N children into two teams. For convenience, we number the boys who are not captains from 1 to N.

The division into teams works as follows. Initially, the first captain chooses one person for his team. Then, the second captain chooses one boy from those who are left. Then the first captain chooses again, and so on. The process continues until there are
no more boys left.

You are given vector <int>s preference1 and preference2, each containing N elements.
preference1[0] is the number of the boy whom the first captain regards to be the best player,
preference1[1] is the next best player according to the first captain, and so on.
preference2 describes the second captain's assessment in the same fashion. The captains pick the players greedily, i.e., each of them always chooses the boy whom he considers to be the strongest between the children not yet chosen.

Return a string consisting of N characters. Character i in the returned string must be '1' if the boy i+1 will be assigned to the first captain's team and '2' otherwise.

Definition
 
Class: TeamsSelection
Method: simulate
Parameters: vector <int>, vector <int>
Returns: string
Method signature: string simulate(vector <int> preference1, vector <int> preference2)
(be sure your method is public)
 
 
Constraints
- preference1 will contain N elements, where N is between 2 and 50, inclusive.
- Elements of preference1 will contain each of the numbers from 1 to N exactly once.
- preference2 will contain N elements.
- Elements of preference2 will contain each of the numbers from 1 to N exactly once.
Examples
0)  
 
{1, 2, 3, 4}
{1, 2, 3, 4}
Returns: "1212"
There are 4 boys to be divided between the two captains. Both captains believe that boy 1 plays best, then come boy 2 and boy 3, and boy 4 plays worst. Thus, the first captain will choose boy 1, the second captain will choose boy 2, since boy
1 is already assigned to a team, then the first captain will choose boy 3 and in the end the second captain will take boy 4.
1)  
 
{3, 2, 1}
{1, 3, 2}
Returns: "211"
The first captain will choose boy 3, the second captain will choose boy 1 and then the first captain will choose boy 2. Note that when there is an odd number of children, the first team ends up one man larger.
2)  
 
{6, 1, 5, 2, 3, 4}
{1, 6, 3, 4, 5, 2}
Returns: "212211"
3)  
 
{8, 7, 1, 2, 4, 5, 6, 3, 9}
{7, 2, 4, 8, 1, 5, 9, 6, 3}
Returns: "121121212"

#include <iostream>#include <cstdio>#include <vector>#include <cstring>#include <cstdlib>using namespace std;class TeamsSelection{public:    string simulate(vector<int>, vector<int>);};string TeamsSelection::simulate(vector<int>a, vector<int>b){    char tmp[50];    bool visit[53];    int N = a.size();    memset(visit,false,sizeof(visit));    int flag1 = 0,flag2 = 0;    for(int j = 0; j < N; j++)    {        for(int i = flag1; i < N; i++)        {            if(!visit[a[flag1]])            {                visit[a[flag1]] = true;                tmp[a[flag1]-1] = '1';                flag1++;                break;            }            flag1++;        }        for(int i = flag2; i < N; i++)        {            if(!visit[b[flag2]])            {                visit[b[flag2]] = true;                tmp[b[flag2]-1] = '2';                flag2++;                break;            }            flag2++;        }    }    tmp[N] = '\0';    return string(tmp);}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.