-
Notifications
You must be signed in to change notification settings - Fork 0
/
ans.cpp
85 lines (80 loc) · 1.66 KB
/
ans.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include <iostream>
#include <array>
#include <vector>
#include <iomanip>
#include <string>
#include <cmath>
#include <algorithm>
#include <queue>
#include <map>
#include <set>
using namespace std;
typedef pair<int, int> P;
typedef long long LL;
const LL INF = 1 << 31;
int main()
{
string a[4] = {"dream", "erase", "dreamer", "eraser"};
string s;
cin >> s;
reverse(s.begin(), s.end());
for (int i = 0; i < 4; ++i)
{
reverse(a[i].begin(), a[i].end());
}
bool ans = false;
LL j = 0;
bool aaa = true;
while (aaa)
{
bool ans2 = false;
for (int i = 0; i < 4; ++i)
{
if (i < 2)
{
string d = s.substr(j, 5);
if (d == a[i])
{
j += 5;
ans2 = true;
}
continue;
}
else if (i == 3)
{
string d = s.substr(j, 6);
if (d == a[i])
{
j += 6;
ans2 = true;
}
continue;
}
else
{
string d = s.substr(j, 7);
if (d == a[i])
{
j += 7;
ans2 = true;
}
continue;
}
}
LL uuu = s.size();
if (!ans2)
{
aaa = false;
break;
}
else if (j >= uuu - 1)
{
ans = true;
break;
}
}
if (ans)
cout << "YES" << endl;
else
cout << "NO" << endl;
}