Codeforces 626B Cards(模拟+规律)

简介: B. Cards time limit per test:2 seconds memory limit per test:256 megabytes input:standard input output:standard output ...

B. Cards

time limit per test:2 seconds
memory limit per test:256 megabytes
input:standard input
output:standard output

Catherine has a deck of n cards, each of which is either red, green, or blue. As long as there are at least two cards left, she can do one of two actions:

  • take any two (not necessarily adjacent) cards with different colors and exchange them for a new card of the third color;
  • take any two (not necessarily adjacent) cards with the same color and exchange them for a new card with that color.

She repeats this process until there is only one card left. What are the possible colors for the final card?

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 200) — the total number of cards.

The next line contains a string s of length n — the colors of the cards. s contains only the characters 'B', 'G', and 'R', representing blue, green, and red, respectively.

Output

Print a single string of up to three characters — the possible colors of the final card (using the same symbols as the input) in alphabetical order.

Examples
Input
2
RB
Output
G
Input
3
GRG
Output
BR
Input
5
BBBBB
Output
B
Note

In the first sample, Catherine has one red card and one blue card, which she must exchange for a green card.

In the second sample, Catherine has two green cards and one red card. She has two options: she can exchange the two green cards for a green card, then exchange the new green card and the red card for a blue card. Alternatively, she can exchange a green and a red card for a blue card, then exchange the blue card and remaining green card for a red card.

In the third sample, Catherine only has blue cards, so she can only exchange them for more blue cards.

题目链接:http://codeforces.com/contest/626/problem/B

题意:有n张卡片,颜色有B,G,R三种,两张不动颜色的卡片合成一张第三种颜色的卡片,两张相同颜色的卡片合成该颜色的一张卡片。 按照此规则,任意组合,输出最后一张卡片的颜色,输出所有可能。

分析:模拟+规律。

①当n张卡片只有一种颜色,最后一张肯定就是该颜色。  

②当n(n>2)张卡片里有两种颜色,A有(n-1)张,B只有1张,那么结果可以为B,C两种颜色。

③当n==2,且有A,B颜色卡片各一张,则最后颜色为C颜色。

④其他情况均有A,B,C这三种颜色。

下面给出AC代码:

错写判断条件,连连被卡数据QAQ!

 

  1 #include <bits/stdc++.h>
  2 using namespace std;
  3 inline int read()
  4 {
  5     int x=0,f=1;
  6     char ch=getchar();
  7     while(ch<'0'||ch>'9')
  8     {
  9         if(ch=='-')
 10             f=-1;
 11         ch=getchar();
 12     }
 13     while(ch>='0'&&ch<='9')
 14     {
 15         x=x*10+ch-'0';
 16         ch=getchar();
 17     }
 18     return x*f;
 19 }
 20 int n;
 21 char s[255];
 22 int main()
 23 {
 24     n=read();
 25     cin>>s;
 26     int r=0,g=0,b=0;
 27     for(int i=0;i<n;i++)
 28     {
 29         if(s[i]=='R')
 30             r++;
 31         if(s[i]=='G')
 32             g++;
 33         if(s[i]=='B')
 34             b++;
 35     }
 36     if(r>0&&g==0&&b==0)
 37     {
 38         cout<<'R'<<endl;
 39         return 0;
 40     }
 41     if(r==0&&g>0&&b==0)
 42     {
 43         cout<<'G'<<endl;
 44         return 0;
 45     }
 46     if(r==0&&g==0&&b>0)
 47     {
 48         cout<<'B'<<endl;
 49         return 0;
 50     }
 51     if(r==0&&g==1&&b==1)
 52     {
 53         cout<<'R'<<endl;
 54         return 0;
 55     }
 56     if(r==1&&g==0&&b==1)
 57     {
 58         cout<<'G'<<endl;
 59         return 0;
 60     }
 61     if(r==1&&g==1&&b==0)
 62     {
 63         cout<<'B'<<endl;
 64         return 0;
 65     }
 66     if(r>1&&g==1&&b==0)
 67     {
 68         cout<<"BG"<<endl;
 69         return 0;
 70     }
 71     if(r>1&&g==0&&b==1)
 72     {
 73         cout<<"BG"<<endl;
 74         return 0;
 75     }
 76     if(r==1&&g>1&&b==0)
 77     {
 78         cout<<"BR"<<endl;
 79         return 0;
 80     }
 81     if(r==0&&g>1&&b==1)
 82     {
 83         cout<<"BR"<<endl;
 84         return 0;
 85     }
 86     if(r==1&&g==0&&b>1)
 87     {
 88         cout<<"GR"<<endl;
 89         return 0;
 90     }
 91     if(r==0&&g==1&&b>1)
 92     {
 93         cout<<"GR"<<endl;
 94         return 0;
 95     }
 96     if((r>1&&g>1)||(g>1&&b>1)||(r>1&&b>1)||(r>=1&&g>=1&&b>=1))
 97     {
 98         cout<<"BGR"<<endl;
 99         return 0;
100     }
101     return 0;
102 }

 

 

 


目录
相关文章
|
机器学习/深度学习 人工智能 BI
The Great Hero(Codeforces Round #700 (Div. 2))模拟+贪心思想和排序
The Great Hero(Codeforces Round #700 (Div. 2))模拟+贪心思想和排序
56 0
|
人工智能
P1208 [USACO1.3]混合牛奶 Mixing Milk(贪心思想加一点特别的循环)
P1208 [USACO1.3]混合牛奶 Mixing Milk(贪心思想加一点特别的循环)
63 0
Shortest Path with Obstacle( CodeForces - 1547A )(模拟)
Shortest Path with Obstacle( CodeForces - 1547A )(模拟)
43 0
2021年暑假康复性训练(Codeforces Round #731 (Div. 3))全题解(上)
2021暑假康复性训练 Codeforces Round #731 (Div. 3) A Shortest Path with Obstacle B. Alphabetical Strings C. Pair Programming D. Co-growing Sequence E. Air Conditioners F. Array Stabilization (GCD version) G. How Many Paths?
116 0
2021年暑假康复性训练(Codeforces Round #731 (Div. 3))全题解(上)
|
Java Shell
Codeforces Round #746 (Div. 2) D - Hemose in ICPC ?(交互 二分 欧拉序)
Codeforces Round #746 (Div. 2) D - Hemose in ICPC ?(交互 二分 欧拉序)
151 0
|
人工智能
【训练题解】UPC Card Eater (思维)
【训练题解】UPC Card Eater (思维)
41 0
UPC-游戏智商+ 路标 (动态规划+DFS)
UPC-游戏智商+ 路标 (动态规划+DFS)
111 0
2021年暑假康复性训练(Codeforces Round #731 (Div. 4))全题解(下)
D. Co-growing Sequence input: output: code: E. Air Conditioners input: output: F. Array Stabilization (GCD version) input: output: code: G. How Many Paths? input: output: ac_code:
111 0
2021年暑假康复性训练(Codeforces Round #731 (Div. 4))全题解(下)
|
人工智能
[Codeforces 1589D] Guess the Permutation | 交互 思维 二分
题意 多组输入:{ 每组给出一个n,有一个长度为n的数列,在开始的时候a i = i ,有三个数i , j , k 数列反转了 [i,j−1] [j,k] 要求出这三个数,可以对系统进行询问 [ l , r ] 区间内 逆序对 的个数,会返回这个值 }
119 0