-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeep_it_beautifull.cpp
55 lines (55 loc) · 1.23 KB
/
keep_it_beautifull.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
#include <bits/stdc++.h>
using namespace std;
int main()
{
int cases;
cin>>cases;
while(cases--)
{
int q;cin>>q;
vector<int> ans;
int prev = -1, ul=-1;
bool up=true, drp=false;
while(q--)
{
int x;cin>>x;
if(up)
{
ul = x;
prev = x;
up=false;
ans.push_back(1);
continue;
}
else if(x < prev && !drp)
{
if(x<=ul)
{
drp=true;
prev=x;
ans.push_back(1);
continue;
}
else ans.push_back(0);
continue;
}
else if(x>=prev && !drp)
{
ans.push_back(1);
prev = x;
continue;
}
else if(drp)
{
if(x>=prev && x<=ul)
{
ans.push_back(1);
prev = x;
}
else ans.push_back(0);
}
}
for(int i=0; i<ans.size(); i++)cout<<ans[i];
cout<<endl;
}
}