-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAdaPawns.cpp
98 lines (82 loc) · 1.59 KB
/
AdaPawns.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
86
87
88
89
90
91
92
93
94
95
96
97
98
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
// Author - Kevin Mathew
// Birla Institute of Technology, Mesra
string s;
vector<ll> moves;
vector<ll> states;
ll possibilities[1000][2];
void te(){
moves.clear();
states.clear();
cin >> s;
ll winOrLose = 0;
ll last = -1;
for(ll i=0;i<s.size();i++)
if(s[i] == '.'){
last = i;
break;
}
if(last == -1){
cout << "No\n";
return;
}
for(ll i=last;i<s.size();i++){
if(s[i] == 'P'){
moves.push_back(i-last);
last++;
}
}
if(moves.size() == 0){
cout << "No\n";
return;
}
for(ll i=0;i<moves.size();i++){
ll a = (moves[i] % 3);
states.push_back(a);
}
// for(ll i=0;i<moves.size();i++)
// cout << states[i] << " " ;
// cout << "\n";
if(states[states.size()-1] == 2){
cout << "Yes\n";
return;
}
for(ll i=states.size()-2;i>=0;i--){
if(states[i] == 2){
ll curr = 0;
for(ll j=i+1;j<states.size();j++){
if(states[j] == 2){
if(possibilities[i][0] == possibilities[i][1])
if(curr == 0)
possibilities[i][0] = possibilities[i][1] = possibilities[i][0];
else
possibilities[i][0] = possibilities[i][1] = 1 - possibilities[i][0];
else
}
if(curr == 0)
curr = states[i];
else
curr = 1 - states[i];
}
}
}
if(states[states.size()-1])
cout << "Yes\n";
else
cout << "No\n";
}
int main()
{
freopen("input.txt", "r", stdin); //Comment
freopen("output.txt", "w", stdout); //this out.
ios::sync_with_stdio(false); //Not
cin.tie(NULL); //this.
cout.tie(0); //or this.
ll T;
cin >> T;
while(T--)
te();
return 0;
}