SERVS - Servers
We’d like to place copies of the files at the servers so as to minimize the sum of placement and access costs. Formally, we say that a configuration is a choice, for each server Si with i = 1, 2 ... n−1, of whether to place a copy of the file at Si or not. (Recall that a copy is always placed at Sn.) The total cost of a configuration is the sum of all placement costs for servers with a copy of the file, plus the sum of all access costs associated with all n servers.
Write a program which reads from the standard input the placement costs and writes a single number, the minimum cost of a configuration. First line of the input consists of the number n of servers (1 ≤ n ≤ 1000). In the next n lines you are given the placement costs, in line i + 1 you are given the placement cost ci of server Si.
Example
Input: 4 1 1 1 9 Output: 12
Input: 4 4 3 2 1 Output: 6
hide comments
smso:
2024-03-23 05:18:23
Do divide and conquer on range of unassigned servers.
|
|
Ashwini:
2013-12-31 07:05:41
@groopy: its not 19th test case. even if your 1st test case output is wrong then also judge will run it till 19th test case.after that it checks for wrong answer. so just check your logic |
|
Ashwini:
2013-12-31 06:19:27
what are the constraints for ci? |
|
raunakrocks:
2013-12-15 18:27:32
AC!! Last edit: 2013-12-30 12:57:47 |
Added by: | Marek Adamczyk |
Date: | 2013-11-28 |
Time limit: | 1s-2s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |