-
Notifications
You must be signed in to change notification settings - Fork 0
/
Closestsum.cpp
53 lines (48 loc) · 1.17 KB
/
Closestsum.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
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define FOR(i,a,b) for(int i = a;i<b;i++)
#define INF (unsigned)!((int)0)
#define mp make_pair
#define pb push_back
#define ff first
#define ss second
#define lb lower_bound
#define ub upper_bound
#define endl "\n"
const int NIL = -1; typedef pair<int, int> pii; typedef pair<ll, ll> pl;
typedef vector<int> vi; typedef vector<ll> vl; typedef vector<pii> vpii;
typedef vector<pl> vpl; typedef vector<vi> vvi; typedef vector<vl> vvl;
// kattis <Closest Sums> question
void solve(){
}
int main () {
ios_base::sync_with_stdio(0);cin.tie(0);
int count = 1, n;
while(cin>>n && n != 0){
int a[n];
for(int i = 0;i<n;++i){
cin>>a[i];
}
int m ;cin>>m;
// from each query find the two numbers which summed,
// give the closest to q,get min abs(a[i] + a[j]) - query)
int ans;
cout<<"Case "<<count<<':'<<endl;
for(int i =0 ;i<m;++i){
int x;cin>>x;
ans = INT_MAX;
for(int j = 0 ;j<n;j++){
for(int k = j+ 1;k<n;k++){
if(abs((a[j] + a[k]) - x) < abs(x - ans)){
ans = (a[j] + a[k]);
}
}
}
cout<<"Closest sum to "<<x<<" is "<<ans<<'.'<<endl;
}
count++;
}
return 0;
}