-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprof_slim.cpp
54 lines (54 loc) · 1.09 KB
/
prof_slim.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
#include <bits/stdc++.h>
using namespace std;
int main()
{
int cases;
cin>>cases;
for(int i=0; i<cases; i++)
{
int n;
cin>>n;
vector<int> v;
int ng=0;
for(int j=0; j<n; j++)
{
int x;
cin>>x;
if(x<0)
{
ng++;
x *= -1;
}
v.push_back(x);
}
int prev = INT_MAX;
if(ng==0) prev = 0;
bool ans=true;
for(int j=0;j<n; j++)
{
if(ng>0)
{
if(v[j]>prev)
{
cout<<"No"<<endl;
ans=false;
break;
}
ng--;
prev = v[j];
if(ng==0) prev=0;
}
else
{
if(v[j]<prev)
{
cout<<"No"<<endl;
ans=false;
break;
}
prev = v[j];
}
}
if(ans) cout<<"Yes"<<endl;
}
}