CF987A Infinity Gauntlet 模拟

CF987A Infinity Gauntlet 模拟

You took a peek on Thanos wearing Infinity Gauntlet. In the Gauntlet there is a place for six Infinity Gems:

  • the Power Gem of purple color,
  • the Time Gem of green color,
  • the Space Gem of blue color,
  • the Soul Gem of orange color,
  • the Reality Gem of red color,
  • the Mind Gem of yellow color.

Using colors of Gems you saw in the Gauntlet determine the names of absent Gems.

Input

In the first line of input there is one integer n

(0n6

) — the number of Gems in Infinity Gauntlet.

In next n

lines there are colors of Gems you saw. Words used for colors are: purple, green, blue, orange, red, yellow. It is guaranteed that all the colors are distinct. All colors are given in lowercase English letters.

Output

In the first line output one integer m

(0m6

) — the number of absent Gems.

Then in m

lines print the names of absent Gems, each on its own line. Words used for names are: Power, Time, Space, Soul, Reality, Mind. Names can be printed in any order. Keep the first letter uppercase, others lowercase.

Examples
Input
Copy
4
red
purple
yellow
orange
Output
Copy
2
Space
Time
Input
Copy
0
Output
Copy
6
Time
Mind
Soul
Power
Reality
Space
Note

In the first sample Thanos already has Reality, Power, Mind and Soul Gems, so he needs two more: Time and Space.

In the second sample Thanos doesn't have any Gems, so he needs all six.

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<string>
#include<cmath>
#include<map>
#include<set>
#include<vector>
#include<queue>
#include<bitset>
#include<ctime>
#include<deque>
#include<stack>
#include<functional>
#include<sstream>
//#include<cctype>
//#pragma GCC optimize(2)
using namespace std;
#define maxn 900005
#define inf 0x7fffffff
//#define INF 1e18
#define rdint(x) scanf("%d",&x)
#define rdllt(x) scanf("%lld",&x)
#define rdult(x) scanf("%lu",&x)
#define rdlf(x) scanf("%lf",&x)
#define rdstr(x) scanf("%s",x)
typedef long long  ll;
typedef unsigned long long ull;
typedef unsigned int U;
#define ms(x) memset((x),0,sizeof(x))
const long long int mod = 1e9 + 7;
#define Mod 1000000000
#define sq(x) (x)*(x)
#define eps 1e-3
typedef pair<int, int> pii;
#define pi acos(-1.0)
//const int N = 1005;
#define REP(i,n) for(int i=0;i<(n);i++)
typedef pair<int, int> pii;
inline ll rd() {
    ll x = 0;
    char c = getchar();
    bool f = false;
    while (!isdigit(c)) {
        if (c == '-') f = true;
        c = getchar();
    }
    while (isdigit(c)) {
        x = (x << 1) + (x << 3) + (c ^ 48);
        c = getchar();
    }
    return f ? -x : x;
}

ll gcd(ll a, ll b) {
    return b == 0 ? a : gcd(b, a%b);
}
int sqr(int x) { return x * x; }


/*ll ans;
ll exgcd(ll a, ll b, ll &x, ll &y) {
    if (!b) {
        x = 1; y = 0; return a;
    }
    ans = exgcd(b, a%b, x, y);
    ll t = x; x = y; y = t - a / b * y;
    return ans;
}
*/
int n;
map<string, string>mp;
map<string, int>mp2;
string ss[10];
int main() {
    //ios::sync_with_stdio(0);
    mp["purple"] = "Power"; mp["green"] = "Time";
    mp["blue"] = "Space"; mp["orange"] = "Soul";
    mp["red"] = "Reality"; mp["yellow"] = "Mind";
    rdint(n);
    ss[1] = "red"; ss[2] = "blue"; ss[3] = "yellow";
    ss[4] = "purple"; ss[5] = "green"; ss[6] = "orange";
    for (int i = 1; i <= n; i++) {
        string tmp; cin >> tmp;
        mp2[tmp] = 1;
    }
    cout << 6 - n << endl;
    for (int i = 1; i <= 6; i++) {
        if (!mp2[ss[i]]) {
            cout << mp[ss[i]] << endl;
        }
    }
    return 0;
}

 

posted @ 2019-01-15 18:34 NKDEWSM 阅读( ...) 评论( ...) 编辑 收藏
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Infinity插件是一款功能强大的浏览器插件,它可以提供无限滚动和翻页功能。通过安装Infinity插件,用户在浏览网页时无需手动点击下一页或者滚动到底部,插件会自动加载新的内容,使用户能够连续地浏览网页,提升了浏览效率。 Infinity插件适用于各类网站,包括新闻、社交媒体、博客等。它能够将网页内容自动加载到当前页面,用户可以不间断地阅读连续的文章或帖子,避免了不必要的翻页操作,节省了时间和精力。它还支持按关键字搜索页面内容,帮助用户快速定位感兴趣的内容。 Infinity插件的使用非常简便。只需在浏览器的扩展程序中安装插件,以后无论在何种网页上,用户只需向下滚动鼠标或触摸板,新内容就会自动加载,实现无缝浏览。如果用户对某个网页感兴趣,可以点击内容保存并进行后续操作,如加入收藏夹或分享给朋友。 除了提供无限滚动功能,Infinity还具备一些个性化设置。用户可以根据自己的喜好和需求,调整滚动速度、显示方式等。此外,Infinity插件也提供了浏览记录功能,用户可以随时查看自己浏览过的页面,方便回顾和整理。 总而言之,Infinity插件为用户提供了更自由、高效的网页浏览体验。它的功能强大且易于使用,使得用户在浏览网页时享受到更多的便利和快乐。无论是专业人士、学生,还是普通用户,都能从Infinity插件中受益。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值