-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMAYA.cpp
74 lines (68 loc) · 1.37 KB
/
MAYA.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
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
#define LI long int;
int find(string num[], string str);
int main()
{
int n;
cin >> n;
cin.ignore(100, '\n');
while (n != 0)
{
int base[] = {1, 20, 360, 7200, 144000, 2880000, 57600000};
string num[20] = {
"S",
".",
"..",
"...",
"....",
"-",
". -",
".. -",
"... -",
".... -",
"- -",
". - -",
".. - -",
"... - -",
".... - -",
"- - -",
". - - -",
".. - - -",
"... - - -",
".... - - -"};
int arr[n];
for (int i = 0; i < n; i++)
{
string str;
getline(cin, str);
int index = find(num, str);
arr[i] = index;
}
long long int sum = 0;
int i = n - 1;
int j = 0;
while (j < n)
{
sum += base[i] * (arr[j]);
i--;
j++;
}
cout << sum << endl;
cin >> n;
cin.ignore(100, '\n');
}
}
int find(string num[], string str)
{
for (int i = 0; i < 20; i++)
{
string st = num[i];
if (st.compare(str) == 0)
{
return i;
}
}
}