A10583 | Video Cards
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Little Vlad is fond of popular computer game Bota-2. Recently, the developers announced the new add-on named Bota-3. Of course, Vlad immediately bought only to find out his computer is too old for the new game and needs to be updated.
There are $n$ video cards in the shop, the power of the $i$ -th video card is equal to integer value $a_{i}$ . As Vlad wants to be sure the new game will work he wants to buy not one, but several video cards and unite their powers using the cutting-edge technology. To use this technology one of the cards is chosen as the leading one and other video cards are attached to it as secondary. For this new technology to work it's required that the power of each of the secondary video cards is divisible by the power of the leading video card. In order to achieve that the power of any secondary video card can be reduced to any integer value less or equal than the current power. However, the power of the leading video card should remain unchanged, i.e. it can't be reduced.
Vlad has an infinite amount of money so he can buy any set of video cards. Help him determine which video cards he should buy such that after picking the leading video card and may be reducing some powers of others to make them work together he will get the maximum total value of video power.
There are $n$ video cards in the shop, the power of the $i$ -th video card is equal to integer value $a_{i}$ . As Vlad wants to be sure the new game will work he wants to buy not one, but several video cards and unite their powers using the cutting-edge technology. To use this technology one of the cards is chosen as the leading one and other video cards are attached to it as secondary. For this new technology to work it's required that the power of each of the secondary video cards is divisible by the power of the leading video card. In order to achieve that the power of any secondary video card can be reduced to any integer value less or equal than the current power. However, the power of the leading video card should remain unchanged, i.e. it can't be reduced.
Vlad has an infinite amount of money so he can buy any set of video cards. Help him determine which video cards he should buy such that after picking the leading video card and may be reducing some powers of others to make them work together he will get the maximum total value of video power.
输入格式
The first line of the input contains a single integer $n$ ( $1<=n<=200000$ ) — the number of video cards in the shop.
The second line contains $n$ integers $a_{1}$ , $a_{2}$ , ..., $a_{n}$ ( $1<=a_{i}<=200000$ ) — powers of video cards.
The second line contains $n$ integers $a_{1}$ , $a_{2}$ , ..., $a_{n}$ ( $1<=a_{i}<=200000$ ) — powers of video cards.
输出格式
The only line of the output should contain one integer value — the maximum possible total power of video cards working together.
输入输出样例
输入 #1
4 3 2 15 9
输出 #1
27
输入 #2
4 8 2 2 7
输出 #2
18
In the first sample, it would be optimal to buy video cards with powers $3$ , $15$ and $9$ . The video card with power $3$ should be chosen as the leading one and all other video cards will be compatible with it. Thus, the total power would be $3+15+9=27$ . If he buys all the video cards and pick the one with the power $2$ as the leading, the powers of all other video cards should be reduced by $1$ , thus the total power would be $2+2+14+8=26$ , that is less than $27$ . Please note, that it's not allowed to reduce the power of the leading video card, i.e. one can't get the total power $3+1+15+9=28$ .
In the second sample, the optimal answer is to buy all video cards and pick the one with the power $2$ as the leading. The video card with the power $7$ needs it power to be reduced down to $6$ . The total power would be $8+2+2+6=18$ .
In the second sample, the optimal answer is to buy all video cards and pick the one with the power $2$ as the leading. The video card with the power $7$ needs it power to be reduced down to $6$ . The total power would be $8+2+2+6=18$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted