-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLockdown After Party.cpp
More file actions
177 lines (156 loc) · 3.77 KB
/
Lockdown After Party.cpp
File metadata and controls
177 lines (156 loc) · 3.77 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
Task: Input Format
The first line will contain an array of size 7. This will represent the Panipuris eaten by Shreya on each day of a week starting from Sunday.
Second line will also contain an array of size 7. This will represent the Panipuris eaten by Vinit on each day of a week starting from Sunday.
Third line will contain an integer Q representing the number of queries.
Next Q lines will contain a string i.e. Sunday, Monday, . . . . , Saturday.
Constraints
|size of array| = 7
Elements of the given array cannot exceed 70.
Output Format
For each day, print the name of person, who will pay the money.
Note - The looser (not winner) will pay the money.
Sample Input 0
10 20 15 20 30 40 10
20 10 30 40 50 10 20
5
Monday
Wednesday
Saturday
Friday
Sunday
Sample Output 0
Vinit
Shreya
Shreya
Vinit
Shreya
Solution:
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
int q;
int sh[7],vi[7];
string ch;
for(int i=0;i<7;i++){
cin>>sh[i];
}
for(int i=0;i<7;i++){
cin>>vi[i];
}
cin>>q;
for(int i=0;i<q;i++){
cin>>ch;
int a =0;
if(ch=="Sunday"){
a =1;
}
if(ch=="Monday"){
a =2;
}
if(ch=="Tuesday"){
a =3;
}
if(ch=="Wednesday"){
a =4;
}
if(ch=="Thursday"){
a =5;
}
if(ch=="Friday"){
a =6;
}
if(ch=="Saturday"){
a =7;
}
switch(a) {
case 1 : {
if(sh[0]>vi[0]){
cout<<"Vinit";
cout<<endl;
}
else{
cout<<"Shreya";
cout<<endl;
}
break;
}
case 2 : {
if(sh[1]>vi[1]){
cout<<"Vinit";
cout<<endl;
}
else{
cout<<"Shreya";
cout<<endl;
}
break;
}
case 3 : {
if(sh[2]>vi[2]){
cout<<"Vinit";
cout<<endl;
}
else{
cout<<"Shreya";
cout<<endl;
}
break;
}
case 4 : {
if(sh[3]>vi[3]){
cout<<"Vinit";
cout<<endl;
}
else{
cout<<"Shreya";
cout<<endl;
}
break;
}
case 5 : {
if(sh[4]>vi[4]){
cout<<"Vinit";
cout<<endl;
}
else{
cout<<"Shreya";
cout<<endl;
}
break;
}
case 6 : {
if(sh[5]>vi[5]){
cout<<"Vinit";
cout<<endl;
}
else{
cout<<"Shreya";
cout<<endl;
}
break;
}
case 7 : {
if(sh[6]>vi[6]){
cout<<"Vinit";
cout<<endl;
}
else{
cout<<"Shreya";
cout<<endl;
}
break;
}
default :{
cout<<"Enter correct value";
break;
}
}
}
return 0;
}