-
Notifications
You must be signed in to change notification settings - Fork 0
/
B_Avoid_Local_Maximums.cpp
80 lines (66 loc) · 1.39 KB
/
B_Avoid_Local_Maximums.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
#include <bits/stdc++.h>
#define int long long
#define endl '\n'
#define fast ios_base::sync_with_stdio(0); cin.tie(nullptr);
using namespace std;
signed main()
{
int t;cin >> t;
while (t--)
{
int n,op= 0;
cin >> n;
int arr[n];
for (int i=0; i<n; i++)
{
cin >> arr[i];
}
for (int i = 1; i <n-1;i++)
{
if (arr[i] > arr[i-1] and arr[i] > arr[i+1])
{
if (i+2 >= n)
{
arr[i+1] = arr[i];
op++;
}
else
{
arr[i+1] = max(arr[i], arr[i+2]);
op++;
}
}
}
cout << op << endl;
for (int i = 0; i < n; i++)
{
cout << arr[i] << " ";
}
cout << endl;
}
return 0;
}
signed main()
{
int t;cin >> t;
while(t--)
{
int n;
cin>>n;
vector<int>vec(n);
for(int i=0; i<n; i++) cin>>vec[i];
int op=0;
for(int i=1; i<n-1; i++)
{
if(vec[i]>vec[i-1] and vec[i]>vec[i+1])
{
if(i+2<n) vec[i+1]=max(vec[i],vec[i+2]);
else vec[i]=vec[i-1];
op++;
}
}
cout<<op<<endl;
for(int i=0; i<n; i++) cout<<vec[i]<<" ";
cout<<endl;
}
}