-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC_Min_Max_Array_Transformation.cpp
67 lines (55 loc) · 1.12 KB
/
C_Min_Max_Array_Transformation.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
/*
RunAt - green
*/
#include <iostream>
#include <set>
#include <climits>
#include <cmath>
#include <numeric>
#include <map>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;
typedef int long long ll;
#define p(a) cout << a << "\n";
#define p2(a,b) cout << a << " " << b << "\n";
#define YES cout << "YES" << "\n"
#define NO cout << "NO" << "\n"
const int N = 1e5+5;
const int MOD = 1e9+7;
void solve() {
ll n;
cin >> n;
vector<long long> vec(n);
for (auto &e: vec) cin >> e;
vector<long long> vec2(n);
for (auto &e: vec2) cin >> e;
for (int i=0; i<n; i++) {
int greater = *lower_bound(vec2.begin(), vec2.end(), vec[i]);
cout << greater - vec[i] << " ";
}
cout << "\n";
vector<int> suff(n);
suff[n-1] = vec2[n-1];
for (int i=n-2; i>=0; i--) {
if (vec[i+1] <= vec2[i]) {
suff[i] = suff[i+1];
}
else {
suff[i] = vec2[i];
}
}
for (int i=0; i<n; i++) {
cout << suff[i]-vec[i] << " ";
}
cout << "\n";
}
int main() {
cin.sync_with_stdio(0);
cin.tie(0);
int tests = 1;
cin >> tests;
while (tests--) solve();
return 0;
}