-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHBLLNS.cpp
64 lines (53 loc) · 1.12 KB
/
CHBLLNS.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
// #include <iostream>
// #include <vector>
// #include <algorithm>
// using namespace std;
// #define ll long long
// int main() {
// int t;
// cin>>t;
// while(t--)
// {
// vector<ll> arr(3);
// cin>>arr[0]>>arr[1]>>arr[2];
// int n;
// cin>>n;
// if(n==1)
// cout<<1<<endl;
// else
// {
// sort(arr.begin(),arr.end());
// if(arr[0]>=n)
// cout<<3*n-2<<endl;
// else if(arr[1]<n)
// cout<<arr[0]+arr[1]+n<<endl;
// else
// cout<<arr[0]+2*n-1<<endl;
// }
// }
// return 0;
// }
#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin>>t;
while(t--)
{
long long arr[3],n;
cin>>arr[0]>>arr[1]>>arr[2]>>n;
if(n==1)
cout<<1<<endl;
else
{
sort(arr,arr+3);
if(arr[0]>=n)
cout<<3*n-2<<endl;
else if(arr[1]<n)
cout<<arr[0]+arr[1]+n<<endl;
else
cout<<arr[0]+2*n-1<<endl;
}
}
return 0;
}