-
Notifications
You must be signed in to change notification settings - Fork 481
/
63A.cpp
64 lines (60 loc) · 1.54 KB
/
63A.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//🎃🎃🎃😎😎😁🤓☣☣☣☣☣dark_coder☣☣☣☣☣😎😎😁🤓🎃🎃🎃
#include <bits/stdc++.h>
using namespace std;
#define IOS \
ios::sync_with_stdio(0); \
cin.tie(0); \
cout.tie(0);
#define all(x) (x).begin(), (x).end()
#define li long long int
#define pi pair<int, int>
int main()
{
IOS int n;
cin >> n;
string cap;
vector<string> wc, r, m;
for (int i = 0; i < n; i++)
{
string s1, s2;
cin >> s1 >> s2;
if (s2 == "rat")
r.push_back(s1);
else if (s2 == "woman" || s2 == "child")
wc.push_back(s1);
else if (s2 == "man")
m.push_back(s1);
else
cap = s1;
}
for (int i = 0; i < r.size(); i++)
{
cout << r[i] << endl;
}
for (int i = 0; i < wc.size(); i++)
{
cout << wc[i] << endl;
}
for (int i = 0; i < m.size(); i++)
{
cout << m[i] << endl;
}
cout << cap; //🎃🎃🎃😎😎😁🤓☣☣☣☣☣dark_coder☣☣☣☣☣😎😎😁🤓🎃🎃🎃
#include <bits/stdc++.h>
using namespace std;
#define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define all(x) (x).begin(), (x).end()
#define li long long int
#define pi pair<int,int>
int main()
{
IOS
int t;
cin>>t;
while(t--)
{
}
return 0;
}
return 0;
}