CF987A Infinity GauntletSTL
Posted Roni
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF987A Infinity GauntletSTL相关的知识,希望对你有一定的参考价值。
【链接】:CF987A
【分析】:运用map
【代码】:
#include <iostream>
#include<queue>
#include<string.h>
#include<bits/stdc++.h>
using namespace std;
#define N 100010
#define M 2005
const int INF = 0x3f3f3f3f;
#define rep(i,a,b) for(int i=(a); i<(b); i++)
#define ll long long
int n,m,x,y;
char a[M][M];
int k[M];
string s;
map<string, string> mp;
int main()
{
mp["red"] = "Reality";
mp["purple"] = "Power";
mp["green"] = "Time";
mp["blue"] = "Space";
mp["orange"] = "Soul";
mp["yellow"] = "Mind";
scanf("%d",&n);
for( int i =1; i <= n; ++i )
{
cin>>s;
mp[s]="";
}
cout<<6-n<<endl;
for(auto pp:mp)
if(pp.second != "")
cout<<pp.second<<endl;
}
以上是关于CF987A Infinity GauntletSTL的主要内容,如果未能解决你的问题,请参考以下文章
为什么Java中的-Infinity + Infinity的平方根? [重复]
如何在 ANSI C 中生成 NaN、-Infinity 和 +Infinity?
React-Vega - 警告字段“x”的无限范围:[Infinity,-Infinity]