Skip to content

Commit e22ac8d

Browse files
committed
Added 1631A - Min Max Swap.cpp
1 parent e5eaa7b commit e22ac8d

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

1631A - Min Max Swap.cpp

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
// ॐ नमः शिवाय
2+
#include<bits/stdc++.h>
3+
using namespace std;
4+
5+
#define ll long long
6+
#define pb push_back
7+
#define ff first
8+
#define ss second
9+
#define mp make_pair
10+
11+
// Code Written By: Vikash Patel
12+
// Codeforces Profile: https://codeforces.com/profile/vikashpatel
13+
14+
int main()
15+
{
16+
ios_base::sync_with_stdio(0);
17+
cin.tie(0);
18+
cout.tie(0);
19+
20+
// #ifndef ONLINE_JUDGE
21+
// freopen("input.txt", "r", stdin);
22+
// freopen("/Users/vikash/Desktop/output.txt", "w", stdout);
23+
// #endif
24+
25+
int t;
26+
cin>>t;
27+
while(t--)
28+
{
29+
int n;
30+
cin>>n;
31+
int arr[n],brr[n];
32+
for(int i=0;i<n;i++)
33+
{
34+
cin>>arr[i];
35+
}
36+
for(int i=0;i<n;i++)
37+
{
38+
cin>>brr[i];
39+
if(arr[i]>brr[i])
40+
{
41+
swap(arr[i],brr[i]);
42+
}
43+
}
44+
sort(arr,arr+n);
45+
sort(brr,brr+n);
46+
cout<<arr[n-1]*brr[n-1]<<endl;
47+
}
48+
return 0;
49+
}

0 commit comments

Comments
 (0)