-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path101.cpp
More file actions
39 lines (39 loc) · 749 Bytes
/
Copy path101.cpp
File metadata and controls
39 lines (39 loc) · 749 Bytes
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
#include <bits/stdc++.h>
using namespace std;
const int N =2e5+10;
int a[N];
void solve() {
int t;
cin>>t;
while (t--) {
int n;
cin>>n;
for (int i=0;i<n;i++) {
cin>>a[i];
}
for (int i=0;i<n;i++) {
if (a[i]==-1) {
a[i]=1;
break;
}
if (a[i]==1)break;
}
for (int i=n-1;i>=0;i--) {
if (a[i]==-1) {
a[i]=1;
break;
}
if (a[i]==1)break;
}
for (int i=0;i<n;i++) {
cout<<max(a[i],0)<<" ";
}
cout<<endl;
}
}
int main () {
ios::sync_with_stdio(0);
cin.tie(0);
solve();
return 0;
}