-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10130 - SuperSale.cpp
62 lines (58 loc) · 1.49 KB
/
10130 - SuperSale.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
//============================================================================
// Name : Riham.cpp
// Author : Remo
// Description : Hello World in C++, Ansi-style
//============================================================================
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define Set(v,d) memset(v, d, sizeof(v))
#define oo 10000007 //infinity
/** ---------------------------Declarations--------------------------- **/
const int maxW=33, maxN=1003;
int T, N, G, weight[maxN], price[maxN];
int dp[maxW][maxN];
/** ----------------------------Functions----------------------------- **/
int SuperSale(int w, int indx){
if(indx == N){
return 0;
}
if(dp[w][indx] != -1)
return dp[w][indx];
int ans1=0,ans2=0;
if(w-weight[indx]>=0 && indx<N)
ans1=SuperSale(w-weight[indx], indx+1)+price[indx];
if(indx<N)
ans2=SuperSale(w, indx+1);
return dp[w][indx]=max(ans1, ans2);
}
ll Ipow(int base, int exp)
{ll result = 1;
while(exp)
{if(exp & 1)result*=base;
exp>>=1;base*=base;}
return result;}
//********************************************************//
int main() {
// freopen("Output.txt", "w", stdout);
scanf("%d", &T);
while(T--){
scanf("%d", &N);
for(int i=0; i<N; i++){
int p, w;
scanf("%d %d", &p, &w);
price[i]=p, weight[i]=w;
}
Set(dp,-1);
int sol=0;
scanf("%d", &G);
for(int i=0; i<G; i++){
int w;
scanf("%d", &w);
sol+=SuperSale(w, 0);
}
printf("%d\n", sol);
}
return 0;
}