FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Dynamic-Programming/knapsack01.cpp at master · shiningflash/Dynamic-Programming · GitHub
shiningflash
/
Dynamic-Programming
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
2
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Dynamic-Programming
/
knapsack01.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
65 lines (54 loc) · 1.39 KB
Breadcrumbs
Dynamic-Programming
/
knapsack01.cpp
Copy path
File metadata and controls
65 lines (54 loc) · 1.39 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
************************************
* Knapsack (recursive solution) O(2^n)
* @author Amirul Islam (shiningflash)
***********************************
*/
#
include
<
cstdio
>
#
include
<
iomanip
>
#
include
<
cstring
>
#
include
<
cmath
>
#
include
<
cstdlib
>
#
include
<
cctype
>
#
include
<
algorithm
>
#
include
<
string
>
#
include
<
vector
>
#
include
<
queue
>
#
include
<
map
>
#
include
<
set
>
#
include
<
sstream
>
#
include
<
stack
>
#
include
<
list
>
#
include
<
iostream
>
#
include
<
assert.h
>
/*
*Define memory set function*
*/
#
define
mem
(
x,y
) memset(x,y,
sizeof
(x))
#
define
CLEAR
(
x
) memset(x,
0
,
sizeof
(x))
/*
*Define function and object*
*/
#
define
pb
push_back
#
define
Sort
(
v
) sort(v.begin(),v.end())
#
define
_sort
(
s, n
) sort(s, s+n)
#
define
sqr
(
x
) ((x)*(x))
/*
*Define constant value*
*/
#
define
le
5001
#
define
ERR
1e-9
#
define
pi
(
2
*
acos
(
0
))
#
define
PI
3.141592653589793
/*
*Define input*
*/
#
define
scanint
(
a
) scanf(
"
%d
"
,&a)
#
define
scanLLD
(
a
) scanf(
"
%lld
"
,&a)
typedef
unsigned
long
long
ll;
using
namespace
std
;
/*
*********************End******************
*/
int
w[] = {
10
,
20
,
30
};
int
val[] = {
60
,
100
,
120
};
int
cnt =
0
;
int
knapsack
(
int
W,
int
n) {
cnt++;
cout << W <<
"
"
<< n << endl;
if
(n ==
0
|| W ==
0
)
return
0
;
if
(w[n-
1
] > W)
return
knapsack
(W, n-
1
);
else
return
max
(val[n-
1
] +
knapsack
(W-w[n-
1
], n-
1
),
knapsack
(W, n-
1
));
}
int
main
() {
int
n =
3
, W =
50
;
cout <<
knapsack
(W, n) <<
"
"
<< cnt << endl;
}
Back
|
FazBrowse Home
|
New Git URL