FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Dynamic-Programming/knapsack03.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
/
knapsack03.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
70 lines (58 loc) · 1.51 KB
Breadcrumbs
Dynamic-Programming
/
knapsack03.cpp
Copy path
File metadata and controls
70 lines (58 loc) · 1.51 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
66
67
68
69
/*
************************************
* Dividing coins UVALive - 5583
* @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
50001
#
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
coin[le], dp[le];
int
t, n, dif;
inline
int
knapsack
(
int
n,
int
w) {
for
(
int
i =
0
; i <= w; dp[i] =
0
, i++);
for
(
int
i =
1
; i <= n; i++)
for
(
int
j = w; j >
0
; j--)
if
(coin[i] <= j)
dp[j] =
max
(coin[i] + dp[j-coin[i]], dp[j]);
return
dp[w];
}
int
main
() {
for
(
scanint
(t); t--; ) {
scanint
(n);
int
sum =
0
;
for
(
int
i =
1
; i <= n;
scanint
(coin[i]), sum += coin[i], i++);
cout << sum -
2
*
knapsack
(n, sum/
2
) << endl;
}
}
Back
|
FazBrowse Home
|
New Git URL